da_wait_for_text
Wait until specified text appears on screen using OCR, with configurable timeout and polling, to confirm UI state after clicks or key presses.
Instructions
Block until text appears on screen (OCR + UI-element classification), or timeoutMs (default 5000, max 60000) elapses. Match strategy is identical to da_click_text / da_find_text — substring by default, set fuzzy: true for case-insensitive + whitespace-normalized matching. Polls every intervalMs (default 200, min 50, max 5000). Throws NOT_FOUND on timeout. Use this after a click / key / dialog-open to confirm the new state is painted before continuing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| fuzzy | No | ||
| displayId | No | ||
| timeoutMs | No | ||
| intervalMs | No |