hover
Simulate mouse hover at specified coordinates in a Chrome browser session using the Chrome Debug MCP Server for precise browser automation tasks.
Instructions
将鼠标悬停在指定坐标位置
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coordinate | Yes | 悬停位置的坐标,格式为 'x,y' |
Input Schema (JSON Schema)
{
"properties": {
"coordinate": {
"description": "悬停位置的坐标,格式为 'x,y'",
"type": "string"
}
},
"required": [
"coordinate"
],
"type": "object"
}