browser_wait
Wait for a web element to satisfy a condition (visible, clickable, present, or contain text) before proceeding, enabling reliable browser automation.
Instructions
Wait until an element satisfies a condition: visible, clickable, present in DOM, or contains text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | Max seconds to wait | |
| selector | Yes | CSS selector to wait for | |
| condition | No | What to wait for: 'visible' (default), 'clickable', 'present', or 'text:<string>' | visible |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |