wait for property
Wait a specified amount of time for a given property value of a control or window to contain an expected value before proceeding to the next action line.
Name | Description | Type | Modifier |
---|---|---|---|
window | TA name of the window. | Interface Entity | None |
control | (Optional) TA name of the control. | Interface Element | None |
property | TA property whose value is to be tested. | String | None |
value | Expected value of the specified property. When this value is detected, execution proceeds to the next action line. | String | None |
timeout | (Optional) Maximum time to wait (units: seconds). Default Value: 20 | String | None |
None
This action may be used within the following project items: test modules and user-defined actions.
window control property value timeout
wait for property login login caption Login 5
 
window control property expected
check control property login login caption Login
- Whenever possible, it is recommended that you use the built-in property wait setting, along with the appropriate built-in action, in lieu of wait for property. The property wait setting applies to three built-in actions: check control property, check window property, and check.
- This action supports the <ignore> modifier. If the string
<ignore>
is present as the value of any of the arguments, or any argument contains an expression that evaluates to<ignore>
, the action is skipped during execution.