browser_wait_for
Wait for text to appear on a page or wait a fixed duration (max 10 seconds per call). Synchronizes browser automation by targeting a specific tab.
Instructions
Wait for text to appear on the page or wait a fixed duration. Max 10s per call — call multiple times for longer waits. If a previous attempt failed, do NOT increase wait time blindly; try a different action instead. Supports targeting a specific tab via tabId.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Text to wait for on the page | |
| time | No | Seconds to wait (when no text provided, max 10) | |
| tabId | No | Target tab ID (from browser_tabs list). Uses active tab if omitted. | |
| agentId | No | Agent identifier for parallel execution. Pass a unique ID (e.g. 'C1', 'J2') — the server automatically routes calls to this agent's dedicated tab (registered via browser_tabs action=new). |