Sleep

This command waits a specified period (in seconds) before execution of the next command in the workflow.

Syntax
Sleep: <seconds>; 
This table lists the examples of the Sleep command:
Requirement Syntax
Sleep for 2 seconds
Sleep: 2;
Sleep for a number of seconds in variable $seconds which is set to 3
$seconds = 3;
Sleep: $seconds;