scroll
Control browser page scrolling by specifying horizontal and vertical pixel amounts with optional smooth animation. Suitable for precise navigation in web automation tasks.
Instructions
Scroll the page by specified amounts with enhanced feedback
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| smooth | No | Whether to use smooth scrolling animation (default: false) | |
| x | Yes | Horizontal scroll amount in pixels (positive = right, negative = left) | |
| y | Yes | Vertical scroll amount in pixels (positive = down, negative = up) |
Input Schema (JSON Schema)
{
"properties": {
"smooth": {
"description": "Whether to use smooth scrolling animation (default: false)",
"type": "boolean"
},
"x": {
"description": "Horizontal scroll amount in pixels (positive = right, negative = left)",
"type": "number"
},
"y": {
"description": "Vertical scroll amount in pixels (positive = down, negative = up)",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}