Skip to main content
[Command] Wait
Sophie avatar
Written by Sophie
Updated over a week ago

Definition and Usage

The Wait command is used to instruct the workflow to stop for a specified number of seconds given as input.

The Wait command should be used to ensure synchronization in your workflow. For instance, consider a program that requires two successive directions to be executed in order. Without the Wait command, the second instruction might be triggered before the first one is completed.

The Wait command allows you to delay the execution of the second instruction so that the first one can be completed before it. This ensures that your program runs smoothly and that each instruction is triggered in the right sequence.


Parameters Values

Parameter

Description

Wait time(s)

Set a wait time in seconds


Example

This workflow will go to the web page "www.octoparse.com" in a built-in browser, and save the URL as a new variable named "Octoparse", then wait for the page to load for 5 seconds.

Did this answer your question?