Definition and Usage
The Wait command suspends workflow execution for a specified duration. It allows you to introduce a delay or pause in your automation sequence, which can be useful when waiting for processes to complete, pages to load, or systems to respond.
Parameter Values
Input parameters
Parameter | Description | Possible Values | Required | Options / Notes |
Wait time (s) | Set wait duration in seconds | Numeric value | Yes | The value should be a positive number; can use variables for dynamic wait times |
Variables produced
This action doesn't produce any variables.
Using Variables in Conditions
You can use variables in the Wait time parameter by clicking the {x} icon or inserting a variable reference. This allows for dynamic wait times based on previous calculations or conditions. For example, you might use a variable that contains a calculated wait time based on system performance or network conditions.
Notes
The Wait command pauses the entire workflow execution for the specified duration.
Wait times are measured in seconds; use decimal values for millisecond precision (e.g., 0.5 for 500ms).
For more efficient automation, consider using conditional waits or event triggers instead of fixed wait times when possible.
Excessive or unnecessary wait times can significantly increase the overall execution time of your automation workflow.
The Wait command is useful for handling timing issues between steps, especially when working with applications that have variable response times.