Test Id |
Description |
TEST_PARAM1 |
TEST_PARAM2 |
ACCESS |
Check if the page can be accessed. |
Unused |
Unused |
TITLE_SUCCESS |
Success if the returned page title matches a specified pattern. |
A perl regular expression for title matching (e.g. Francisco.*Rosa) |
Unused |
TITLE_FAIL |
Failure if the returned page title matches a specified pattern. |
A perl regular expression for title matching (e.g. Francisco.*Rosa) |
Unused |
TIME |
Success if the time to process the requests falls within the specified range. |
The lower limit for the time range (e.g. 2, as in 2 seconds). |
The higher limit for the time range (e.g. 30, as in 30 seconds). |
PAGE_DIFF |
Success if the retrieved content matches bit by bit the stored content at recording session time. |
Unused |
Unused |
CUSTOM_TEST |
Allow running a user-built custom test. |
The perl module, accessible from the running environment where the run method can be found. |
The parameters to the test execution. |
CONTENT_PATTERN_SUCCESS |
Success if the retrieved content matches the specified regular expression. |
A perl regular expression to match the content against (e.g. Francisco.*Rosa) |
Unused |
CONTENT_PATTERN_FAIL |
Failure if the retrieved content matches the specified regular expression. |
A perl regular expression to match the content against (e.g. Francisco.*Rosa) |
Unused |
STATUS_SUCCESS |
Success if the status of the request execution matches given status id. |
Numeric status for success of test (e.g. 401, 200) |
Unused |
STATUS_FAIL |
Failure if the status of the request execution matches given status id. |
Numeric status for success of test (e.g. 401, 200) |
Unused |
COOKIE_SET_PATTERN_SUCCESS |
Success if the execution of the request results in the specified cookie being set with the specified value. |
Name of the cookie being set. |
A perl regular expression to match the cookie value against. |
TEST_SEQUENCE |
Allows running a sequence of tests against returned request. Successfull if all tests are successfull, failure if any one of the tests fails. |
A sequence of tests following the syntax: TestID[TEST_PARAM1|TEST_PARAM2](;TestID[TEST_PARAM1|TEST_PARAM2])*. Example: COOKIE_SET_PATTERN_SUCCESS[critter_javascript|.*?Ingenta TEST.*?];ACCESS[];TITLE_SUCESS[Francisco]). |
Unused |
SUBTEST_CALL |
Run a full subtest when hitting this step. Effectively allows reuse of defined tests. |
The subtest folder. |
The subtest name. |