Wait
From UBot Studio
(Difference between revisions)
(Created page with "This command will pause the script for a specified amount of seconds. == Example == <pre> load html("hello world!") wait(10) navigate("http://www.ubotstudio.com/resources",...") |
|||
Line 1: | Line 1: | ||
− | This command will pause the script for a specified amount of seconds. | + | |
+ | This command is a [[Flow Commands|Flow Command]]. This command will pause the script for a specified amount of seconds. | ||
== Example == | == Example == |
Revision as of 16:16, 12 April 2013
This command is a Flow Command. This command will pause the script for a specified amount of seconds.
Example
load html("hello world!") wait(10) navigate("http://www.ubotstudio.com/resources", "Wait")
Running the command will run the [Load Html|load html] command first, pause for 10 seconds, and then run the [Navigate|navigate] command after the ten seconds is over.