click
Simulate mouse clicks at specific coordinates in a browser session. Integrates with Chrome Debug MCP Server to automate browser actions with persistent sessions.
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"
}