click_and_navigate
Interact with a persistent browser tab via CSS selector: click, type, select, submit, or scroll. Returns the updated page state to support multi-step workflows without bot detection.
Instructions
Interact with a persistent browser tab: click elements, type text, select options, submit forms, or scroll. Requires a tab_id from open_tab. Returns the page state after the action.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Text to type (for 'type'), option value (for 'select') | |
| action | Yes | Action to perform | |
| tab_id | Yes | The persistent tab ID (from open_tab) | |
| timeout | No | Timeout in ms (default: 30000) | |
| selector | Yes | CSS selector for the target element | |
| wait_after | No | CSS selector to wait for after the action completes |