wb_wait
Pause execution until page text, CSS selector, or document ready state is achieved, preventing premature actions in web automation.
Instructions
Wait until text appears, CSS selector matches, or document is ready (timeout).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Substring to wait for in document.body.innerText | |
| session | No | Per-call session override (does not change the process default) | |
| selector | No | CSS selector to wait for | |
| timeoutMs | No | Timeout ms (default 15000) | |
| intervalMs | No | Poll interval ms (default 400) |