browser_hover
Hover over a specified web page element using structured accessibility snapshots, enabling precise interactions without vision models or screenshots.
Instructions
Hover over element on page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
element | Yes | Human-readable element description used to obtain permission to interact with the element | |
ref | Yes | Exact target element reference from the page snapshot |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"element": {
"description": "Human-readable element description used to obtain permission to interact with the element",
"type": "string"
},
"ref": {
"description": "Exact target element reference from the page snapshot",
"type": "string"
}
},
"required": [
"element",
"ref"
],
"type": "object"
}