| { | |
| "name": "browser_hover", | |
| "description": "Hover over element on page", | |
| "inputSchema": { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "type": "object", | |
| "properties": { | |
| "element": { | |
| "description": "Human-readable element description used to obtain permission to interact with the element", | |
| "type": "string" | |
| }, | |
| "target": { | |
| "type": "string", | |
| "description": "Exact target element reference from the page snapshot, or a unique element selector" | |
| } | |
| }, | |
| "required": [ | |
| "target" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |