Language catalogKeywordswaitOn this pagewaitHalts execution of the script for a specified amount of time. Syntax wait <duration> Example # Wait for a fixed duration. wait 5s# A duration can also come from a variable.$duration = 10swait $duration# Or from a random value$duration = ToDuration {Random 1 10} secondswait $duration