mouseClick
Automate precise mouse clicks at designated screen coordinates using PlayMCP Browser Automation Server. Ideal for web testing, scraping, and interaction tasks.
Instructions
Click at specific coordinates
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}