moveMouse
Control mouse movement by specifying coordinates to automate browser interactions, ideal for web testing, scraping, and precise cursor navigation tasks.
Instructions
Move mouse to 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"
}