browser_waitForSelector
Wait for a CSS selector to appear (visible) or disappear from the DOM, with configurable timeout and polling interval.
Instructions
Wait for a CSS selector to appear (visible) or disappear from the DOM. Polls every 200ms until found or timeout.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | Max wait time in ms (default: 10000) | |
| visible | No | Require element to be visible (non-zero dimensions, default: true) | |
| selector | Yes | CSS selector to wait for | |
| disappear | No | Wait for element to disappear instead of appear (default: false) |