Wait actions
Wait actions activity allows the desired element to wait until it becomes clickable or visible through the browser or application. In this way, clicking or setting etc. Processes are delayed according to the loading state of the element, not a fixed waiting period.
| * Application name | The reference name of applications which has already been opened or attached is chosen in the dropdown application which will be opened. |
| *Field | It is the field where the location (Xpath) of the area is to be waited for on the application. |
| * Wait for | It provides the selection of the wait action to be performed. |
| Timeout (sec) | The sets timeout period for checking visible or enable property of the element. Default value is 15. |
Note: * Fields selected with are required, others are optional.
Applications name example
You can use the Applications name as shown in the example.
${robustaWebpage}
Field example
You can use the Field as shown in the example.
(//input[@title=”Arama”])[1]
Wait for examples
It waits until the field in the given XPath location becomes visible:
Visible
It waits until the field in the given XPath location becomes invisible:
invisible
It waits until the field in the given XPath location becomes clickable:
Enable
Timeout (sec) example
You can use the Timeout (sec) as shown in the example .
5
Note
In the example above, until the element whose location is given in the Field field is visible, the next action will not be carried out and the element will be expected to be visible.