Wait Actions Activity
The Wait Actions activity enables the system to pause execution until a specified UI element becomes clickable or visible within a browser or application. This ensures that subsequent actions, such as clicking or data entry, are synchronized with the element's actual loading state, rather than relying on a fixed delay.
| Field | Description | Requirement |
|---|---|---|
| Application Name | The reference name of an already opened or attached application. | Required |
| Field | The XPath location of the UI element to wait for within the application. | Required |
| Wait For | Specifies the condition the activity should wait for (e.g., visible, invisible, clickable). | Required |
| Timeout (seconds) | The maximum duration, in seconds, to wait for the element's specified property to be met. Default is 15 seconds. | Optional |
Action Types & Examples
Visible
- Format:
string - Example Result:
"Visible"
Invisible
- Format:
string - Example Result:
"Invisible"
Clickable
- Format:
string - Example Result:
"Clickable"
Implementation Examples
Field Setup - Application Name: ${robustaWebpage} - Field: (//input[@title="Arama"])[1] - Wait For: Visible - Timeout (seconds): 5
Technical Notes
The activity pauses subsequent actions until the element specified by the
Fieldparameter meets the condition defined inWait For. If the element does not meet the condition within theTimeout (seconds)period, the activity will typically fail, indicating that the element was not found or did not reach the desired state within the allotted time.