browser_scroll_to_coordinates
Navigate web pages by scrolling to exact pixel coordinates (X and Y positions) for precise browser automation and testing.
Instructions
Scroll to specific coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | X coordinate | |
y | Yes | Y coordinate |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}