Action: Wait
Pauses execution for a specified duration
📖 Description
The Wait
action pauses script execution for a specified number of milliseconds.
This is useful for waiting on background tasks or adding a delay between steps.
🧩 Structure
Field | Type | Required | Description | Default value |
---|---|---|---|---|
durationMs |
int | Duration of the wait in milliseconds. Must be greater than zero. | 2000 |
📋 Example
{ "name": "Wait before next step", "action": "Wait", "durationMs": 2000 }
📄 Site updated: 17.06.2025 00:01