Waits for a specific amount of time before proceeding further.
For example, open 1 tab, wait for 5 seconds, then click on an image.
Parameter | Description |
Fixed Value | Wait for a specific time, e.g. 3 seconds |
Random Interval | Put a random time interval, e.g. 2000-3000 milliseconds, between actions, i.e. execute the next step after any time from 2 to 3 seconds |
Example Scenario: There is an image that, due to network issues, requires a few seconds or even minutes to load. Once the image has finished loading, the next step can then be executed.
Parameters | Description |
---|---|
Selector | Enter your selector, e.g. #email_input , input[type="password"] , .button_search . For your reference, How to use a selector. |
Element order | Select element based on the order in which they appear in the page. |
Visible | Wait for an element to visible before proceeding to the following step of the code |
Timeout waiting | The maximum amount of time to wait for a certain condition (web element) becomes visible. If no element is found in that time, the following step will be proceeded. |
Save to | Save the result of whether the element has appeared or not as a variable, which result in true/false. |
Waits for a certain request to finish before proceeding further in the code.
You want to wait for a certain image request to finish before doing other operations. And the URL of that image is: https://m.media-amazon.com/images/I/41APBn4YKcL._AC_SR38,50_.jpg
Parameters | Description |
Response URL | Enter the URL for your desired image, e.g. https://m.media-amazon.com/images/I/41APBn4YKcL._AC_SR38,50_.jpg |
Timeout waiting | The maximum amount of time to wait. For example, if you set it 30000, then will proceed to the next step when the element doesn't appear within 30 seconds. |