mouseDrag
Simulate mouse drag actions by specifying start and end coordinates for precise browser automation tasks using PlayMCP Server.
Instructions
Drag from one coordinate to another
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endX | Yes | ||
endY | Yes | ||
startX | Yes | ||
startY | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endX": {
"type": "number"
},
"endY": {
"type": "number"
},
"startX": {
"type": "number"
},
"startY": {
"type": "number"
}
},
"required": [
"startX",
"startY",
"endX",
"endY"
],
"type": "object"
}