Wait
wait_ms
Pause execution for a fixed number of milliseconds.
wait_window
Wait until a window with a matching title exists (or disappears).
- wait_window:
title_contains: "My Application"
state: exists # exists | closed (default: exists)
timeout_ms: 10000
wait_until
Poll a condition until it becomes true.
- wait_until:
cond: "status == \"done\""
timeout_ms: 30000
interval_ms: 500 # poll interval (default: 200)
wait_process
Wait for a process to start or stop.