Steps
Steps are the basic building blocks that form each sequence of a scenario, similar to statements in a programming language. Steps are potentially blocking (the sequence cannot continue with next step until previous one finishes).
Note that every action can be also used as a step that simply never blocks, as actions do not require any extra input.
1 - addItem
Appends value to an array stored in another variable.
Appends value to an array stored in another variable.
Property | Type | Description |
---|
fromVar | String | Fetch value from session variable. |
toVar | String | Destination variable with the array. |
value | String | Verbatim value. |
2 - addToInt
Add value to integer variable in the session.
Add value to integer variable in the session.
Inline definition |
---|
Accepting one of: var++ , var– , var += value , |
var -= value . |
Property | Type | Description |
---|
orElseSetTo | int | If the variable is currently not set, set it to this value instead of addition. |
value | int | Value added (can be negative). |
var | String | Variable name. |
3 - addToSharedCounter
Adds value to a counter shared by all sessions in the same executor.
Adds value to a counter shared by all sessions in the same executor.
Inline definition |
---|
Use on of: counter++ , counter– , counter += <value> , |
counter -= <value> |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
key | String | Identifier for the counter. |
operator | enum | Operation to perform on the counter. Default is ADD . Options: |
value | int | Value (integer). |
4 - awaitAllResponses
Block current sequence until all requests receive the response.
Block current sequence until all requests receive the response.
5 - awaitDelay
Block this sequence until referenced delay point.
Block this sequence until referenced delay point.
Inline definition |
---|
Delay point created in scheduleDelay.key . |
Property | Type | Description |
---|
key | String | Delay point created in scheduleDelay.key . |
6 - awaitInt
Block current sequence until condition becomes true.
Block current sequence until condition becomes true.
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
var | String | Variable name storing the compared value. |
equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
7 - awaitVar
Block current sequence until this variable gets set/unset.
Block current sequence until this variable gets set/unset.
Inline definition |
---|
Variable name or !variable if we are waiting for it to be unset. |
Property | Type | Description |
---|
var | String | Variable name or !variable if we are waiting for it to be unset. |
8 - breakIfFinished
Stop execution of current sequence if the phase is in finished state.
Stop execution of current sequence if the phase is in finished state.
This is useful for a long-running (looping) sequence that should not extend the duration of its phase.
9 - breakSequence
Prematurely stops execution of this sequence if the condition is satisfied.
Prematurely stops execution of this sequence if the condition is satisfied.
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
dependency | String | This step is blocked if this variable does not have set value (none by default). |
intCondition | Builder | Condition comparing integer variables. |
onBreak | Action.Builder | Action performed when the condition is true and the sequence is to be ended. |
stringCondition | Builder | Condition comparing string variables. |
allConditions
Test more conditions and combine the results using AND logic.
allConditions.<list of mappings>
Selector for condition type.
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
intCondition | Builder | Condition comparing integer variables. |
stringCondition | Builder | Condition comparing string variables. |
allConditions.<list of mappings>.allConditions
Test more conditions and combine the results using AND logic.
allConditions.<list of mappings>.boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
allConditions.<list of mappings>.intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
allConditions.<list of mappings>.stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
intCondition.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
stringCondition.length
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
stringCondition.length.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
10 - clearHttpCache
Drops all entries from HTTP cache in the session.
Drops all entries from HTTP cache in the session.
11 - conditional
Perform an action or sequence of actions conditionally.
Perform an action or sequence of actions conditionally.
Property | Type | Description |
---|
actions | Action.Builder | Actions that should be executed should the condition hold. |
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
intCondition | Builder | Condition comparing integer variables. |
stringCondition | Builder | Condition comparing string variables. |
allConditions
Test more conditions and combine the results using AND logic.
allConditions.<list of mappings>
Selector for condition type.
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
intCondition | Builder | Condition comparing integer variables. |
stringCondition | Builder | Condition comparing string variables. |
allConditions.<list of mappings>.allConditions
Test more conditions and combine the results using AND logic.
allConditions.<list of mappings>.boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
allConditions.<list of mappings>.intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
allConditions.<list of mappings>.stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
intCondition.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
stringCondition.length
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
stringCondition.length.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
12 - fail
Fail the phase with given message. Used mostly for testing/debugging.
Fail the phase with given message. Used mostly for testing/debugging.
Inline definition |
---|
Message to fail with (unconditionally). |
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
intCondition | Builder | Condition comparing integer variables. |
message | String | Message attached to the failure exception. |
stringCondition | Builder | Condition comparing string variables. |
allConditions
Test more conditions and combine the results using AND logic.
allConditions.<list of mappings>
Selector for condition type.
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
intCondition | Builder | Condition comparing integer variables. |
stringCondition | Builder | Condition comparing string variables. |
allConditions.<list of mappings>.allConditions
Test more conditions and combine the results using AND logic.
allConditions.<list of mappings>.boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
allConditions.<list of mappings>.intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
allConditions.<list of mappings>.stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
intCondition.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
stringCondition.length
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
stringCondition.length.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringCondition.length.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
13 - foreach
Instantiate new sequences based on array variable content.
Instantiate new sequences based on array variable content.
Property | Type | Description |
---|
counterVar | String | Variable to be set to the number of created sequences (optional). |
dependency | String | This step is blocked if this variable does not have set value (none by default). |
fromVar | String | Variable holding the array. |
sequence | String | Name of the instantiated sequence. |
14 - getIndex
Lookup index of an item in an array/collection.
Lookup index of an item in an array/collection.
Property | Type | Description |
---|
collection | String | Variable to fetch the collection from. |
item | Builder | Item that should be looked up (using equality). |
toVar | String | Integer variable to store the index, or -1 if the item is not found. |
item
Inline definition |
---|
Verbatim value. |
Property | Type | Description |
---|
fromVar | String | Fetch value from session variable. |
value | String | Verbatim value. |
15 - getItem
Retrieves n-th item from an array or collection.
Retrieves n-th item from an array or collection.
Property | Type | Description |
---|
fromVar | String | Source variable with an array or list. |
index | Builder | Source for index into the array/list. |
toVar | String | Destination variable for the n-th element. |
index
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
16 - getSharedCounter
Retrieves value from a counter shared by all sessions in the same executor and stores that in a session variable.
Retrieves value from a counter shared by all sessions in the same executor and stores that in a session variable.
If the value exceeds allowed integer range (-2^31 .. 2^31 - 1) it is capped.
Inline definition |
---|
Both the key and variable name. |
Property | Type | Description |
---|
key | String | Identifier for the counter. |
toVar | String | Session variable for storing the value. |
17 - getSize
Calculates size of an array/collection held in variable into another variable
Calculates size of an array/collection held in variable into another variable
Property | Type | Description |
---|
boolFilter | Builder | Count only items matching the condition. |
fromVar | String | Variable holding the collection. |
intFilter | Builder | Count only items matching the condition. |
stringFilter | Builder | Count only items matching the condition. |
toVar | String | Variable storing the size. |
undefinedValue | int | Value to use when fromVar is unset or it does not contain any array/collection. |
boolFilter
Property | Type | Description |
---|
value | boolean | Expected value. |
intFilter
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
intFilter.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intFilter.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intFilter.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intFilter.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intFilter.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intFilter.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringFilter
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
stringFilter.length
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
stringFilter.length.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringFilter.length.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringFilter.length.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringFilter.length.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringFilter.length.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
stringFilter.length.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
18 - hotrodRequest
Issues a HotRod request and registers handlers for the response.
Issues a HotRod request and registers handlers for the response.
Property | Type | Description |
---|
cacheName | String | Name of the cache used for the operation. This can be a pattern. |
cacheName (alternative) | Builder | <no description> |
get | String | Get specified entry in the remote cache. |
key | String | Key used for the operation. This can be a pattern. |
key (alternative) | Builder | <no description> |
metric | String | Requests statistics will use this metric name. |
metric (alternative) | <list of strings> | Allows categorizing request statistics into metrics based on the request path. |
operation | enum | Options:PUT Adds or overrides each specified entry in the remote cache.GET Get specified entry in the remote cache.
|
put | String | Adds or overrides each specified entry in the remote cache. |
value | String | Value for the operation. This can be a pattern. |
value (alternative) | Builder | <no description> |
cacheName
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
key
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
metric
Allows categorizing request statistics into metrics based on the request path.
Property | Type | Description |
---|
<list of strings> | <list of strings> | Allows categorizing request statistics into metrics based on the request path. The expressions are evaluated in the order as provided in the list. Use one of:regexp -> replacement , e.g. ([^?])(?.)? -> $1 to drop the query part.regexp (don’t do any replaces and use the full path), e.g. .*.jpg -> name (metric applied if none of the previous expressions match).
|
value
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
19 - httpRequest
Issues a HTTP request and registers handlers for the response.
Issues a HTTP request and registers handlers for the response.
Property | Type | Description |
---|
authority | String | HTTP authority (host:port) this request should target. Must match one of the entries in http section. The string can use string interpolation. |
authority (alternative) | Builder | HTTP authority (host:port) this request should target. Must match one of the entries in http section. |
body | Builder | HTTP request body. |
body (alternative) | String | HTTP request body (possibly a pattern). |
compensation | Builder | Configures additional metric compensated for coordinated omission. |
compression | Builder | Configure response compression. |
compression (alternative) | String | Request server to respond with compressed entity using specified content encoding. |
CONNECT | String | Issue HTTP CONNECT request to given path. This can be a pattern. |
CONNECT (alternative) | Builder | Issue HTTP CONNECT request to given path. |
DELETE | String | Issue HTTP DELETE request to given path. This can be a pattern. |
DELETE (alternative) | Builder | Issue HTTP DELETE request to given path. |
endpoint | Builder | HTTP endpoint this request should target. Must match to the name of the entries in http section. |
GET | String | Issue HTTP GET request to given path. This can be a pattern. |
GET (alternative) | Builder | Issue HTTP GET request to given path. |
handler | Builder | HTTP response handlers. |
HEAD | String | Issue HTTP HEAD request to given path. This can be a pattern. |
HEAD (alternative) | Builder | Issue HTTP HEAD request to given path. |
headers | Builder | HTTP headers sent in the request. |
method | enum | HTTP method used for the request. Options:GET HEAD POST PUT DELETE OPTIONS PATCH TRACE CONNECT
|
metric | String | Requests statistics will use this metric name. |
metric (alternative) | <list of strings> | Allows categorizing request statistics into metrics based on the request path. |
OPTIONS | String | Issue HTTP OPTIONS request to given path. This can be a pattern. |
OPTIONS (alternative) | Builder | Issue HTTP OPTIONS request to given path. |
PATCH | String | Issue HTTP PATCH request to given path. This can be a pattern. |
PATCH (alternative) | Builder | Issue HTTP PATCH request to given path. |
path | String | HTTP path (absolute or relative), including query and fragment. The string can use string interpolation. |
path (alternative) | Builder | HTTP path (absolute or relative), including query and fragment. |
POST | String | Issue HTTP POST request to given path. This can be a pattern. |
POST (alternative) | Builder | Issue HTTP POST request to given path. |
PUT | String | Issue HTTP PUT request to given path. This can be a pattern. |
PUT (alternative) | Builder | Issue HTTP PUT request to given path. |
sla | Builder | List of SLAs the requests are subject to. |
sync | boolean | This request is synchronous; execution of the sequence does not continue until the full response is received. If this step is executed from multiple parallel instances of this sequence the progress of all sequences is blocked until there is a request in flight without response. Default is true . |
timeout | String | Request timeout - after this time the request will be marked as failed and connection will be closed. Defaults to value set globally in http section. |
TRACE | String | Issue HTTP TRACE request to given path. This can be a pattern. |
TRACE (alternative) | Builder | Issue HTTP TRACE request to given path. |
authority
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
body
Allows building HTTP request body from session variables.
Property | Type | Description |
---|
form | Builder | Build form as if we were sending the request using HTML form. This option automatically adds Content-Type: application/x-www-form-urlencoded to the request headers. |
fromFile | String | Send contents of the file. Note that this method does NOT set content-type automatically. |
fromVar | String | Use variable content as request body. |
pattern | String | Pattern replacing ${sessionvar} with variable contents in a string. |
text | String | String sent as-is. |
body.form
Property | Type | Description |
---|
<list of mappings> | <list of builders> | Add input pair described in the mapping. |
body.form.<list of mappings>
Form element (e.g. as if coming from an INPUT field).
Property | Type | Description |
---|
fromVar | String | Input field value from session variable. |
name | String | Input field name. |
pattern | String | Input field value replacing session variables in a pattern, e.g. foo${myvariable}var |
value | String | Input field value (verbatim). |
compensation
Property | Type | Description |
---|
metric | String | Metric name for the compensated results. |
metric (alternative) | <list of strings> | Configure a custom metric for the compensated results. |
targetRate | double | Desired rate of new virtual users per second. This is similar to constantRate.usersPerSec phase settings but works closer to legacy benchmark drivers by fixing the concurrency. |
targetRate (alternative) | Builder | Desired rate of new virtual users per second. This is similar to constantRate.usersPerSec phase settings but works closer to legacy benchmark drivers by fixing the concurrency. |
compensation.metric
Configure a custom metric for the compensated results.
Property | Type | Description |
---|
<list of strings> | <list of strings> | Allows categorizing request statistics into metrics based on the request path. The expressions are evaluated in the order as provided in the list. Use one of:regexp -> replacement , e.g. ([^?])(?.)? -> $1 to drop the query part.regexp (don’t do any replaces and use the full path), e.g. .*.jpg -> name (metric applied if none of the previous expressions match).
|
compensation.targetRate
Property | Type | Description |
---|
base | double | Base value used for first iteration. |
increment | double | Value by which the base value is incremented for each (but the very first) iteration. |
compression
Property | Type | Description |
---|
encoding | String | Encoding used for Accept-Encoding /TE header. The only currently supported is gzip . |
type | enum | Type of compression (resource vs. transfer based). Options:CONTENT_ENCODING Use Accept-Encoding in request and expect Content-Encoding in response.TRANSFER_ENCODING Use TE in request and expect Transfer-Encoding in response.
|
CONNECT
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
DELETE
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
endpoint
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
GET
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
handler
Manages processing of HTTP responses.
Property | Type | Description |
---|
autoRangeCheck | boolean | Inject status handler that marks the request as invalid on status 4xx or 5xx. Default value depends on ergonomics.autoRangeCheck (see User Guide). |
body | Processor.Builder | Handle HTTP response body. |
followRedirect | enum | Automatically fire requests when the server responds with redirection. Default value depends on ergonomics.followRedirect (see User Guide). Options:NEVER Do not insert any automatic redirection handling.LOCATION_ONLY Redirect only upon status 3xx accompanied with a ’location’ header. Status, headers, body and completions handlers are suppressed in this case (only raw-bytes handlers are still running). This is the default option.HTML_ONLY Handle only HTML response with META refresh header. Status, headers and body handlers are invoked both on the original response and on the response from subsequent requests. Completion handlers are suppressed on this request and invoked after the last response arrives (in case of multiple redirections).ALWAYS Implement both status 3xx + location and HTML redirects.
|
header | HeaderHandler.Builder | Handle HTTP response headers. |
onCompletion | Action.Builder | Action executed when the HTTP response is fully received. |
rawBytes | RawBytesHandler.Builder | Handler processing HTTP response before parsing. |
status | StatusHandler.Builder | Handle HTTP response status. |
stopOnInvalid | boolean | Inject completion handler that will stop the session if the request has been marked as invalid. Default value depends on ergonomics.stopOnInvalid (see User Guide). |
handler.header
Handle HTTP response headers.
Property | Type | Description |
---|
conditional | ConditionalHeaderHandler.Builder | Passes the headers to nested handler if the condition holds. Note that the condition may be evaluated multiple times and therefore any nested handlers should not change the results of the condition. |
countHeaders | CountHeadersHandler.Builder | Stores number of occurences of each header in custom statistics (these can be displayed in CLI using the stats -c command). |
filter | FilterHeaderHandler.Builder | Compares if the header name matches expression and invokes a processor with the value. |
logInvalid | LogInvalidHandler.HeaderHandlerBuilder | Logs headers from requests marked as invalid. |
recordHeaderTime | RecordHeaderTimeHandler.Builder | Records alternative metric based on values from a header (e.g. when a proxy reports processing time). |
handler.header.conditional
Passes the headers to nested handler if the condition holds. Note that the condition may be evaluated multiple times and therefore any nested handlers should not change the results of the condition.
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
handler | HeaderHandler.Builder | One or more header handlers that should be invoked. |
intCondition | Builder | Condition comparing integer variables. |
stringCondition | Builder | Condition comparing string variables. |
handler.header.conditional.allConditions
Test more conditions and combine the results using AND logic.
handler.header.conditional.allConditions.<list of mappings>
Selector for condition type.
Property | Type | Description |
---|
allConditions | Builder | Condition combining multiple other conditions with ‘AND’ logic. |
boolCondition | Builder | Condition comparing boolean variables. |
intCondition | Builder | Condition comparing integer variables. |
stringCondition | Builder | Condition comparing string variables. |
handler.header.conditional.allConditions.<list of mappings>.allConditions
Test more conditions and combine the results using AND logic.
handler.header.conditional.allConditions.<list of mappings>.boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
handler.header.conditional.allConditions.<list of mappings>.intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
handler.header.conditional.allConditions.<list of mappings>.stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
handler.header.conditional.boolCondition
Tests session variable containing boolean value.
Property | Type | Description |
---|
fromVar | String | Variable name. |
value | boolean | Expected value. |
handler.header.conditional.handler
One or more header handlers that should be invoked.
Property | Type | Description |
---|
conditional | ConditionalHeaderHandler.Builder | Passes the headers to nested handler if the condition holds. Note that the condition may be evaluated multiple times and therefore any nested handlers should not change the results of the condition. |
countHeaders | CountHeadersHandler.Builder | Stores number of occurences of each header in custom statistics (these can be displayed in CLI using the stats -c command). |
filter | FilterHeaderHandler.Builder | Compares if the header name matches expression and invokes a processor with the value. |
logInvalid | LogInvalidHandler.HeaderHandlerBuilder | Logs headers from requests marked as invalid. |
recordHeaderTime | RecordHeaderTimeHandler.Builder | Records alternative metric based on values from a header (e.g. when a proxy reports processing time). |
handler.header.conditional.intCondition
Condition comparing integer in session variable.
Inline definition |
---|
Parses condition in the form <variable> <operator> <value> |
where operator is one of: == , != , |
<> (the same as != ), |
>= , > , <= , < . |
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
fromVar | Object | Variable name. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
handler.header.conditional.intCondition.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.intCondition.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.intCondition.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.intCondition.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.intCondition.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.intCondition.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.stringCondition
Condition comparing string in session variable.
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
fromVar | Object | Variable name. |
isSet | boolean | Check if the value is set or unset. By default the variable must be set. |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
handler.header.conditional.stringCondition.length
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
handler.header.conditional.stringCondition.length.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.stringCondition.length.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.stringCondition.length.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.stringCondition.length.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.stringCondition.length.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.conditional.stringCondition.length.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
handler.header.filter
Compares if the header name matches expression and invokes a processor with the value.
handler.header.filter.header
Inline definition |
---|
Literal value the string should match. |
Property | Type | Description |
---|
caseSensitive | boolean | True if the case must match, false if the check is case-insensitive. |
endsWith | CharSequence | Suffix for the string. |
equalTo | CharSequence | Literal value the string should match (the same as {@link #value}). |
length | int | Check the length of the string. |
length (alternative) | Builder | Check the length of the string. |
matchVar | String | Fetch the value from a variable. |
negate | boolean | Invert the logic of this condition. Defaults to false. |
notEqualTo | CharSequence | Value that the string must not match. |
startsWith | CharSequence | Prefix for the string. |
value | CharSequence | Literal value the string should match. |
handler.header.filter.header.length
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
handler.header.recordHeaderTime
Records alternative metric based on values from a header (e.g. when a proxy reports processing time).
Property | Type | Description |
---|
header | String | Header carrying the time. |
metric | String | Name of the created metric. |
unit | String | Time unit in the header; use either ms or ns . |
handler.rawBytes
Handler processing HTTP response before parsing.
handler.rawBytes.transferSizeRecorder
Accumulates request and response sizes into custom metrics.
Property | Type | Description |
---|
key | String | Name of the custom metric for collecting request/response bytes. |
handler.status
Handle HTTP response status.
handler.status.action
Perform certain actions when the status falls into a range.
Property | Type | Description |
---|
<any> | Builder | Perform a sequence of actions if the range matches. Use range as the key and action in the mapping. Possible values of the status should be separated by commas (,). Ranges can be set using low-high (inclusive) (e.g. 200-299), or replacing lower digits with ‘x’ (e.g. 2xx). |
handler.status.counter
Counts how many times given status is received.
Property | Type | Description |
---|
add | int | Number to be added to the session variable. |
expectStatus | int | Expected status (others are ignored). All status codes match by default. |
init | int | Initial value for the session variable. |
set | int | Do not accumulate (add), just set the variable to this value. |
var | String | Variable name. |
handler.status.multiplex
Multiplexes the status based on range into different status handlers.
Property | Type | Description |
---|
<any> | Builder | Run another handler if the range matches. Use range as the key and another status handler in the mapping. Possible values of the status should be separated by commas (,). Ranges can be set using low-high (inclusive) (e.g. 200-299), or replacing lower digits with ‘x’ (e.g. 2xx). |
handler.status.multiplex.<any>
Run another handler if the range matches. Use range as the key and another status handler in the mapping. Possible values of the status should be separated by commas (,). Ranges can be set using low-high (inclusive) (e.g. 200-299), or replacing lower digits with ‘x’ (e.g. 2xx).
handler.status.range
Marks requests that don’t fall into the desired range as invalid.
Inline definition |
---|
Single status code (204 ), masked code (2xx ) or range (200-399 ). |
Property | Type | Description |
---|
max | int | Highest accepted status code. |
min | int | Lowest accepted status code. |
handler.status.store
Stores the status into session variable.
Inline definition |
---|
Variable name. |
Property | Type | Description |
---|
toVar | Object | Variable name. |
HEAD
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
Property | Type | Description |
---|
<any> | String | Use header name (e.g. Content-Type ) as key and value (possibly a pattern). |
<any> (alternative) | Builder | Use header name (e.g. Content-Type ) as key and specify value in the mapping. |
Specifies value that should be sent in headers.
Inline definition |
---|
The value. This can be a |
pattern. |
Property | Type | Description |
---|
fromVar | String | Load header value from session variable. |
pattern | String | Load header value using a pattern. |
metric
Allows categorizing request statistics into metrics based on the request path.
Property | Type | Description |
---|
<list of strings> | <list of strings> | Allows categorizing request statistics into metrics based on the request path. The expressions are evaluated in the order as provided in the list. Use one of:regexp -> replacement , e.g. ([^?])(?.)? -> $1 to drop the query part.regexp (don’t do any replaces and use the full path), e.g. .*.jpg -> name (metric applied if none of the previous expressions match).
|
OPTIONS
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
PATCH
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
path
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
POST
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
PUT
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
sla
Defines a list of Service Level Agreements (SLAs) - conditions that must hold for benchmark to be deemed successful.
Property | Type | Description |
---|
<list of mappings> | <list of builders> | One or more SLA configurations. |
sla.<list of mappings>
Defines a Service Level Agreement (SLA) - conditions that must hold for benchmark to be deemed successful.
Property | Type | Description |
---|
blockedRatio | double | Maximum allowed ratio of time spent waiting for usable connection to sum of response latencies and blocked time. Default is 0 - client must not be blocked. Set to 1 if the client can block without limits. |
errorRatio | double | Maximum allowed ratio of errors: connection failures or resets, timeouts and internal errors. Valid values are 0.0 - 1.0 (inclusive). Note: 4xx and 5xx statuses are NOT considered errors for this SLA parameter. Use invalidRatio for that. |
invalidRatio | double | Maximum allowed ratio of requests with responses marked as invalid. Valid values are 0.0 - 1.0 (inclusive). Note: With default settings 4xx and 5xx statuses are considered invalid. Check out ergonomics.autoRangeCheck or httpRequest.handler.autoRangeCheck to change this. |
limits | Builder | Percentile limits. |
meanResponseTime | String | Maximum allowed mean (average) response time. Use suffix ns , us , ms or s to specify units. |
window | String | Period over which the stats should be collected. By default the SLA applies to stats from whole phase. |
sla.<list of mappings>.limits
Percentile limits.
Property | Type | Description |
---|
<any> | String | Use percentile (value between 0.0 and 1.0) as key and response time with unit (e.g. ms ) in suffix as value. |
TRACE
Generic builder for generating a string.
Inline definition |
---|
A pattern for string |
interpolation. |
Property | Type | Description |
---|
fromVar | Object | Load the string from session variable. |
pattern | String | Use pattern replacing session variables. |
value | String | String value used verbatim. |
20 - json
Parse JSON in variable into another variable.
Parse JSON in variable into another variable.
Property | Type | Description |
---|
delete | boolean | If this is set to true, the selected key will be deleted from the JSON and the modified JSON will be passed to the processor . |
format | enum | Conversion to apply on the matching parts with ’toVar’ or ’toArray’ shortcuts. Options:BYTEBUF Store the buffer directly. Beware that this may cause memory leaks!BYTES Store data as byte array.STRING Interprets the bytes as UTF-8 string.
|
fromVar | String | Variable to load JSON from. |
processor | Processor.Builder | Add one or more processors. |
query | String | Query selecting the part of JSON. |
replace | Transformer.Builder | Custom transformation executed on the value of the selected item. Note that the output value must contain quotes (if applicable) and be correctly escaped. |
replace (alternative) | String | Replace value of selected item with value generated through a pattern. Note that the result must contain quotes and be correctly escaped. |
toArray | String | Shortcut to store selected parts in an array in the session. Must follow the pattern variable[maxSize] |
toVar | String | Shortcut to store first match in given variable. Further matches are ignored. |
unquote | boolean | Automatically unquote and unescape the input values. By default true. |
replace
Custom transformation executed on the value of the selected item. Note that the output value must contain quotes (if applicable) and be correctly escaped.
Property | Type | Description |
---|
actions | ActionsTransformer.Builder | This transformer stores the (defragmented) input into a variable, using requested format. After that it executes all the actions and fetches transformed value using the pattern. |
pattern | Pattern.TransformerBuilder | Use pattern replacing session variables. |
replace.actions
This transformer stores the (defragmented) input into a variable, using requested format. After that it executes all the actions and fetches transformed value using the pattern.
Property | Type | Description |
---|
actions | Action.Builder | Actions to be executed. |
format | enum | Format into which should this transformer convert the buffers before storing. Default is STRING . Options:BYTEBUF Store the buffer directly. Beware that this may cause memory leaks!BYTES Store data as byte array.STRING Interprets the bytes as UTF-8 string.
|
pattern | String | Pattern to use when fetching the transformed value. |
var | String | Variable used as the intermediate storage for the data. |
replace.pattern
Use pattern replacing session variables.
Inline definition |
---|
The pattern formatting string. |
Property | Type | Description |
---|
pattern | String | Use pattern replacing session variables. |
21 - log
Log a message and variable values.
Log a message and variable values.
Inline definition |
---|
A pattern for |
string |
interpolation. |
22 - loop
Repeats a set of steps fixed number of times.
Repeats a set of steps fixed number of times.
This step is supposed to be inserted as the first step of a sequence and the counterVar
should not be set during the first invocation.
Before the loop the counterVar
is initialized to zero, and in each after the last step in the steps
sequence the counter is incremented. If the result is lesser than repeats
this sequence is restarted from the beginning (this is also why the step must be the first step in the sequence).
It is legal to place steps after the looped steps.
Example:
scenario:
- mySequence:
- loop:
counterVar: myCounter
repeats: 5
steps:
- httpRequest:
GET: /foo/${myCounter}
# ...
- someOtherStep: ...
- anotherStepExecutedAfterThoseFiveLoops
Property | Type | Description |
---|
counterVar | String | Variable holding number of iterations. |
repeats | int | Number of iterations that should be executed. |
steps | Builder | List of steps that should be looped. |
23 - markRequestInvalid
Unconditionally mark currently processed request as invalid.
Unconditionally mark currently processed request as invalid.
24 - newSequence
Instantiates a sequence for each invocation.
Instantiates a sequence for each invocation.
Inline definition |
---|
Sequence name. |
Property | Type | Description |
---|
concurrencyPolicy | enum | Options: |
forceSameIndex | boolean | Forces that the sequence will have the same index as the currently executing sequence. This can be useful if the sequence is passing some data to the new sequence using sequence-scoped variables. Note that the new sequence must have same concurrency factor as the currently executing sequence. |
sequence | String | Name of the instantiated sequence. |
25 - noop
Does nothing. Only for demonstration purposes.
Does nothing. Only for demonstration purposes.
26 - publishAgentData
Makes the data available to all sessions in the same agent, including those using different executors.
Makes the data available to all sessions in the same agent, including those using different executors.
Inline definition |
---|
Both name of source variable and the key used to read the data. |
Property | Type | Description |
---|
fromVar | String | Source session variable name. |
name | String | Arbitrary unique identifier for the data. |
27 - publishGlobalCounters
Gathers values from session variables and publishes them globally (to all agents).
Gathers values from session variables and publishes them globally (to all agents).
You can name the counters individually (example 1) or use the variable names (example 2):
<code>
# Example 1:
- publishGlobalCounters:
key: myKey
vars: [ foo, bar ]
# Example 2:
- publishGlobalCounters:
key: someOtherKey
vars:
- foo: myFoo
- bar: bbb
</code>
Property | Type | Description |
---|
key | String | Identifier of the global record. |
vars | Builder | List of names and session variables. |
vars
Property | Type | Description |
---|
<any> | <unknown> | <no description> |
<list of strings> | <unknown> | <no description> |
28 - pullSharedMap
Move values from a map shared across all sessions using the same executor into session variables.
Move values from a map shared across all sessions using the same executor into session variables.
The executor can host multiple shared maps, each holding an entry with several variables. This step moves variables from either a random entry (if no match
is set) or with an entry that has the same value for given variable as the current session. When data is moved to the current session the entry is dropped from the shared map. If the map contains records for which the {@link #vars()} don’t contain a destination variable the contents is lost.
Property | Type | Description |
---|
key | String | Key identifying the shared map. |
match | String | Name of the session variable that stores value identifying the entry in the shared map. |
vars | <list of strings> | List of variables the map should be pulled into. |
vars
List of variables the map should be pulled into.
Property | Type | Description |
---|
<list of strings> | <unknown> | <no description> |
29 - pushSharedMap
Store values from session variables into a map shared across all sessions using the same executor into session variables.
Store values from session variables into a map shared across all sessions using the same executor into session variables.
The executor can host multiple shared maps, each holding an entry with several variables. This step creates one entry in the map, copying values from session variables into the entry.
Property | Type | Description |
---|
key | String | Key identifying the shared map. |
vars | <list of strings> | List of variable names that should be stored in the entry. |
vars
List of variable names that should be stored in the entry.
Property | Type | Description |
---|
<list of strings> | <unknown> | <no description> |
30 - randomCsvRow
Stores random row from a CSV-formatted file to variables.
Stores random row from a CSV-formatted file to variables.
Property | Type | Description |
---|
columns | Builder | Defines mapping from columns to session variables. |
file | String | Path to the CSV file that should be loaded. |
separator | char | Set character used for column separation. By default it is comma (, ). |
skipComments | boolean | Skip lines starting with character ‘#’. By default set to false. |
columns
Property | Type | Description |
---|
<any> | String | Use 0-based column as the key and variable name as the value. |
31 - randomFile
Reads bytes from a randomly chosen file into a variable.
Reads bytes from a randomly chosen file into a variable.
Two formats are supported:
Example 1 - without weights:
toVar: myVar
files:
- /path/to/file1.txt
- file2_relative_to_benchmark.txt
Example 2 - with weights (the second file will be returned twice as often):
toVar: myVar
files:
/path/to/file1.txt: 1
file2_relative_to_benchmark.txt: 2
Property | Type | Description |
---|
filenameVar | String | Optional variable to store the filename of the random file. |
files | Builder | Potentially weighted list of files to choose from. |
toVar | String | Variable where the chosen byte array should be stored. |
files
Property | Type | Description |
---|
<any> | <list of strings> | Item as the key and weight (arbitrary floating-point number, defaults to 1.0) as the value. |
<list of strings> | <list of strings> | Item as the key and weight (arbitrary floating-point number, defaults to 1.0) as the value. |
32 - randomInt
Stores random (linearly distributed) integer into session variable.
Stores random (linearly distributed) integer into session variable.
Property | Type | Description |
---|
max | Builder | Highest possible value (inclusive). Default is Integer.MAX_VALUE. |
min | Builder | Lowest possible value (inclusive). Default is 0. |
toVar | String | Variable name to store the result. |
max
Inline definition |
---|
Constant value. |
Property | Type | Description |
---|
fromVar | String | Initialize with a value from session variable. |
value | int | Initialize with a constant value. |
min
Inline definition |
---|
Constant value. |
Property | Type | Description |
---|
fromVar | String | Initialize with a value from session variable. |
value | int | Initialize with a constant value. |
33 - randomItem
Stores random item from a list or array into session variable.
Stores random item from a list or array into session variable.
Property | Type | Description |
---|
file | String | This file will be loaded into memory and the step will choose on line as the item. |
fromVar | String | Variable containing an array or list. |
list | Builder | Potentially weighted list of items to choose from. |
toVar | String | Variable where the chosen item should be stored. |
list
Property | Type | Description |
---|
<any> | <list of strings> | Item as the key and weight (arbitrary floating-point number, defaults to 1.0) as the value. |
<list of strings> | <list of strings> | Item as the key and weight (arbitrary floating-point number, defaults to 1.0) as the value. |
34 - randomUUID
Stores random string into session variable based on the UUID generator.
Stores random string into session variable based on the UUID generator.
Property | Type | Description |
---|
toVar | String | Variable name to store the result. |
35 - readAgentData
Reads data from agent-wide scope into session variable.
Reads data from agent-wide scope into session variable.
The data must be published in a phase that has terminated before this phase starts: usually this is achieved using the startAfterStrict
property on the phase.
Inline definition |
---|
Both the identifier and destination session variable. |
Property | Type | Description |
---|
name | String | Unique identifier for the data. |
toVar | String | Destination session variable name. |
36 - removeItem
Removes element from an array of variables.
Removes element from an array of variables.
Property | Type | Description |
---|
fromVar | String | Variable containing an existing array of object variables. |
index | Builder | Set index at which the item should be removed. Elements to the right of this are moved to the left. |
index
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
37 - restartSequence
Restarts current sequence from beginning.
Restarts current sequence from beginning.
38 - scheduleDelay
Define a point in future until which we should wait. Does not cause waiting.
Define a point in future until which we should wait. Does not cause waiting.
Property | Type | Description |
---|
duration | String | Duration of the delay with appropriate suffix (e.g. ms or s ). |
fromLast | <none> | Set previous delay point reference as the reference for next delay point; it will be computed as (previous delay point or now) + duration . Note: property does not have any value |
fromNow | <none> | Set this step invocation as the delay point reference; it will be computed as now + duration . Note: property does not have any value |
key | String | Key that is referenced later in awaitDelay step. If you’re introducing the delay through thinkTime do not use this property. |
max | String | Upper cap on the duration (if randomized). |
min | String | Lower cap on the duration (if randomized). |
random | enum | Randomize the duration. Options:CONSTANT Do not randomize; use constant duration.LINEAR Use linearly random duration between min and max (inclusively).NEGATIVE_EXPONENTIAL Use negative-exponential duration with expected value of duration , capped at min and max (inclusively).
|
type | enum | Alternative way to set delay reference point. See fromNow and fromLast property setters. Options: |
39 - set
Set variable in session to certain value.
Set variable in session to certain value.
Inline definition |
---|
Use var <- value . |
Property | Type | Description |
---|
intArray | Builder | Set variable to an (unset) integer array. |
objectArray | Builder | Set variable to an (unset) object array. |
value | String | String value. |
var | String | Variable name. |
intArray
Creates integer arrays to be stored in the session.
Property | Type | Description |
---|
fromVar | String | Contents of the new array. If the variable contains an array or a list, items will be copied to the elements with the same index up to the size of this array. If the variable contains a different value all elements will be initialized to this value. |
size | int | Size of the array. |
objectArray
Creates object arrays to be stored in the session.
Property | Type | Description |
---|
fromVar | String | Contents of the new array. If the variable contains an array or a list, items will be copied to the elements with the same index up to the size of this array. If the variable contains a different value all elements will be initialized to this value. |
size | int | Size of the array. |
40 - setInt
Set session variable to an integral value.
Set session variable to an integral value.
Inline definition |
---|
Use var <- value . |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
intCondition | Builder | Set variable only if the current value satisfies certain condition. |
max | Builder | Set to value that is the maximum of this list of values. |
min | Builder | Set to value that is the minimum of this list of values. |
onlyIfNotSet | boolean | Set variable to the value only if it is not already set. |
value | int | Value (integer). |
var | String | Variable name. |
intCondition
Property | Type | Description |
---|
equalTo | Builder | Compared variable must be equal to this value. |
greaterOrEqualTo | Builder | Compared variable must be greater or equal to this value. |
greaterThan | Builder | Compared variable must be greater than this value. |
lessOrEqualTo | Builder | Compared variable must be lower or equal to this value. |
lessThan | Builder | Compared variable must be lower than this value. |
notEqualTo | Builder | Compared variable must not be equal to this value. |
intCondition.equalTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.greaterThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessOrEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.lessThan
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
intCondition.notEqualTo
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
max
max.<list of mappings>
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
min
41 - setItem
Set element in a collection on given position.
Set element in a collection on given position.
Property | Type | Description |
---|
fromVar | String | Fetch value from session variable. |
index | Builder | Integer session variable with an index into the collection. |
toVar | String | Session variable with the collection. |
value | String | Verbatim value. |
index
Inline definition |
---|
Uses the argument as a constant value. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
value | int | Value (integer). |
42 - setSharedCounter
Sets value in a counter shared by all sessions in the same executor.
Sets value in a counter shared by all sessions in the same executor.
Inline definition |
---|
Both the name of the counter and variable name. |
Property | Type | Description |
---|
fromVar | String | Input variable name. |
key | String | Identifier for the counter. |
value | int | Value (integer). |
43 - stop
Immediately stop the user session (break all running sequences).
Immediately stop the user session (break all running sequences).
44 - stopwatch
Run nested sequence of steps, recording execution time.
Run nested sequence of steps, recording execution time.
45 - stringToInt
Parse string into integer and store it in a variable.
Parse string into integer and store it in a variable.
If the parsing fails the target variable is not modified.
Inline definition |
---|
Use fromVar -> toVar |
Property | Type | Description |
---|
fromVar | String | Source variable name. |
toVar | String | Target variable name. |
46 - template
Format
pattern into session variable.
Format pattern into session variable.
Property | Type | Description |
---|
pattern | String | Pattern to be encoded, e.g. foo${variable}bar${another-variable} |
toVar | String | Variable name to store the result. |
47 - thinkTime
Block current sequence for specified duration.
Block current sequence for specified duration.
Inline definition |
---|
Duration of the delay with appropriate suffix (e.g. ms or s ). |
Property | Type | Description |
---|
duration | String | Duration of the delay with appropriate suffix (e.g. ms or s ). |
fromLast | <none> | Set previous delay point reference as the reference for next delay point; it will be computed as (previous delay point or now) + duration . Note: property does not have any value |
fromNow | <none> | Set this step invocation as the delay point reference; it will be computed as now + duration . Note: property does not have any value |
key | String | Key that is referenced later in awaitDelay step. If you’re introducing the delay through thinkTime do not use this property. |
max | String | Upper cap on the duration (if randomized). |
min | String | Lower cap on the duration (if randomized). |
random | enum | Randomize the duration. Options:CONSTANT Do not randomize; use constant duration.LINEAR Use linearly random duration between min and max (inclusively).NEGATIVE_EXPONENTIAL Use negative-exponential duration with expected value of duration , capped at min and max (inclusively).
|
type | enum | Alternative way to set delay reference point. See fromNow and fromLast property setters. Options: |
48 - timestamp
Stores the current time in milliseconds as string to a session variable.
Stores the current time in milliseconds as string to a session variable.
Inline definition |
---|
Variable name. |
Property | Type | Description |
---|
localeCountry | String | 2-letter ISO country code used in the formatter locale. Defaults to ‘US’. |
pattern | String | Format the timestamp using SimpleDateFormat pattern. |
toVar | String | Target variable name. |
49 - unset
Undefine variable name.
Undefine variable name.
Inline definition |
---|
Variable name. |
Property | Type | Description |
---|
var | Object | Variable name. |