scroll-element
Simulate user interaction by scrolling to a specified element on a webpage using its selector, enabling automated navigation and access to content in AdsPower LocalAPI MCP Server workflows.
Instructions
Scroll the element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | The selector of the element to scroll, find from the page source code, Simulates a user navigating page by scrolling, usually finding element in the bottom of the page |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "The selector of the element to scroll, find from the page source code, Simulates a user navigating page by scrolling, usually finding element in the bottom of the page",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}