要求されたページは選択されたバージョンでは利用できない。
object wait
Description
The maximum wait time for a control or HTML element to become available or, depending upon the action involved, unavailable.
Value units
seconds
Default value
20
Notes
- The object wait setting is applicable to every built-in action that contains the control argument and expects the specified control to exist.
- The object wait setting does not apply to does/if built-in actions: specifically, if control exists, if control not exists, and does control exist. For these three actions, use the window wait probe setting.
- Setting a high wait time value may negatively impact test performance.
Result timeout
Suppose you are using check control exists and check control not exists built-in actions, the execution mechanism is as follows:
- TestArchitect starts looking for the specified window.
- If the specified window is not yet available, TestArchitect waits until the window is available within the default timeout 20 seconds, specified by the window wait built-in setting.
- When the timeout is reached but the window is still unavailable, TestArchitect reports a warning informing that the window could not be found. (No pass or fail is recorded).
- If the window is found, TestArchitect starts looking for the specified control.
- With the check control exists action:
- If the specified control is unavailable, TestArchitect waits until the control is available within the default timeout 20 seconds, specified by the object wait built-in setting.
- When the timeout is reached but the control is still unavailable, TestArchitect reports a failed message.
- With the check control not exists action:
- If the specified control is available, TestArchitect waits until the control is unavailable within the default timeout 20 seconds, specified by the object wait built-in setting.
- When the timeout is reached but the control is still available, TestArchitect reports a failed message.