browser_wait_for_element
Wait for specific page elements to load in dynamic web applications. Use this tool to ensure elements are present before interacting with them, particularly useful for SPAs with asynchronous content loading.
Instructions
[Disabled] Wait for an element matching the CSS selector to appear in the DOM. Polls the page until the element is found or timeout expires. For SPAs where content loads asynchronously. Set visible=true to also require the element to be visible (not hidden by CSS).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tabId | Yes | Tab ID of the page to wait on | |
| selector | Yes | CSS selector to wait for | |
| timeout | No | Max wait time in ms — defaults to 10000 | |
| visible | No | Also require element to be visible, not display:none or visibility:hidden — defaults to false |