interact_with_element
Perform actions on browser page elements: click, type, hover, or select options. Specify a CSS selector and optional value for the action.
Instructions
[LEGACY] Interact with a page element. Use interact_with_page instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | Browser session ID to interact with. Session must already exist | |
| action | Yes | Type of interaction: 'click' for clicking elements, 'type' for entering text, 'hover' for mouse hover, 'select' for dropdown selection | |
| selector | Yes | CSS selector for the target element. Must uniquely identify the element to interact with | |
| value | No | Value to use for the action. For 'type': text to enter, for 'select': option value(s) to select. Not used for 'click' or 'hover' |