Skip to main content

Flow Actions

Commands that control the flow of the Scenario (branching, comments, termination …).

Create Variable

Defines a new variable in the current flow and sets its initial value.

Image

ParameterDescription
Variable NameName of the new variable to create.
ExpressionValue or expression to assign to the variable.

Comment

Inserts a note for yourself or coleagues; does not affect scenario execution.

Image

ParameterDescription
CommentFree-form text added to the script for clarity.

Condition

Chooses which branch to execute; automatically creates True and False subsections.

Image

ParameterDescription
ConditionExpression whose truth value decides whether the subsequent steps run.

Sleep

Groups related actions under a section header; sections can be collapsed or run separately.

Image

ParameterDescription
TimeoutNumber of seconds to pause the workflow.

Exit

Immediately terminates the Scenario.

Section

Groups related actions under a section header; sections can be collapsed or run separately.

Image

ParameterDescription
Section nameLabel that groups subsequent actions visually.

Assert

Verifies a condition. If it fails, the Scenario stops with an error message.

Image

ParameterDescription
ConditionLogical expression that must evaluate to true; otherwise the workflow stops.
MessageText to log / raise when the assertion fails.