Control Flow
While Loop​
Restrictions: "none"
Executes a sequence of operations repeatedly according to the loop type and max iterations setting. With 'do-until', stops when the last operation returns true. With 'do-while', continues while the last operation returns true (stops when false). Alternatively, use a custom condition to control the loop.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
max_iterations | number | The maximum number of iterations to run | Yes | No |
loop_type | enum | Whether to continue while the last operation returns true (do-while) or stop when the last operation returns true (do-until) | Yes | No |
wait_between_iteration | number | Wait time in milliseconds between iterations | No | No |
use_custom_condition | boolean | Use a custom Lua condition instead of checking the last operation's return value | No | No |
custom_condition | code | Custom Lua code that evaluates to true or false. The loop continues while this condition is true (regardless of loop type). | No | No |
Outputs​
Name | Type | Description |
---|
Iterator​
Restrictions: "none"
Iterates over a list of results and applies a sequence of operations to each item in the list.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
input | code | The input to iterate over | Yes | No |
wait_between_iteration | number | Wait time in milliseconds between iterations | No | No |
Outputs​
Name | Type | Description |
---|
If​
Restrictions: "none"
Conditionally execute one of two branches based on the specified condition
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
condition | code | Yes | No |
Outputs​
Name | Type | Description |
---|
Loop​
Restrictions: "none"
Executes a sequence of operations repeatedly for a specified range
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
from | number | The starting value | Yes | No |
to | number | The ending value | Yes | No |
wait_between_iteration | number | Wait time in milliseconds between iterations | No | No |
Outputs​
Name | Type | Description |
---|
Conditional​
Restrictions: "none"
Conditionally execute one of many branches based on the specified condition
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
branches | branches | Yes | No |
Outputs​
Name | Type | Description |
---|