macaroni

wait

Description:
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):

# 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