browser_wait
Wait for dynamic web content to load by pausing execution until elements appear, disappear, or after a fixed delay. Handles SPAs and AJAX content.
Instructions
Wait for a condition: element to appear, element to disappear, or a fixed delay. Useful for SPAs and dynamic content.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | No | CSS selector to wait for | |
| state | No | Wait until element is visible, hidden, or attached to DOM | visible |
| timeout | No | Max wait time in ms | |
| delay | No | Fixed delay in ms (ignores selector) |