waitDescription:
The wait executor is used to wait until a set of conditions is true
Parent: execute, then, else
Value (simple form): sequence of (condition), optional, specifying a set of conditions that must be true to continue (default is null)
Value (key/value form):
wait: sequence of (condition), required, specifying a set of conditions that must be true to continuetimeout: time, optional, specifying the amount of time, after which the wait executor will aborted (default is null, meaning infinite)# simple form
- wait:
- (condition1, required)
- (condition2, optional)
- ...
# simple example
- wait:
- app: notepad.exe
# key/value form
- wait:
- (condition1, required)
- (condition2, optional)
- ...
timeout: (time, optional)
# key/value example
- wait:
- app: notepad
timeout: 2000