browser_scroll_by_pixels
Scroll web pages by specific pixel amounts horizontally and vertically to navigate content or position elements for interaction during browser automation.
Instructions
Scroll by a specific number of pixels
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | Number of pixels to scroll horizontally | |
y | Yes | Number of pixels to scroll vertically |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"description": "Number of pixels to scroll horizontally",
"type": "number"
},
"y": {
"description": "Number of pixels to scroll vertically",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}