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.
| Parameter | Description |
|---|---|
| Variable Name | Name of the new variable to create. |
| Expression | Value or expression to assign to the variable. |
Comment
Inserts a note for yourself or coleagues; does not affect scenario execution.
| Parameter | Description |
|---|---|
| Comment | Free-form text added to the script for clarity. |
Condition
Chooses which branch to execute; automatically creates True and False subsections.
| Parameter | Description |
|---|---|
| Condition | Expression whose truth value decides whether the subsequent steps run. |
Sleep
Groups related actions under a section header; sections can be collapsed or run separately.
| Parameter | Description |
|---|---|
| Timeout | Number 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.
| Parameter | Description |
|---|---|
| Section name | Label that groups subsequent actions visually. |
Assert
Verifies a condition. If it fails, the Scenario stops with an error message.
| Parameter | Description |
|---|---|
| Condition | Logical expression that must evaluate to true; otherwise the workflow stops. |
| Message | Text to log / raise when the assertion fails. |