Skip to main content

sleep

Set the amount of time for the current application to sleep for in milliseconds before continuing to the next action.

Parameters

NameTypeDefaultDescription
durationRequiredinteger | forever0The amount of time to sleep in milliseconds. Must be a positive number. Can also be set to a forever string for the sleep to never end.
Possible Values: [forever, <Any Positive Number>]

Examples

Timed Sleep Example

version: 1.0.0
sections:
main:
- sleep: 5000

Forever Sleep Example

version: 1.0.0
sections:
main:
- sleep: forever