click-element
Use this tool to programmatically click a specified element on a webpage by providing its selector, enabling automated interactions with AdsPower browser profiles.
Instructions
Click the element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | The selector of the element to click, find from the page source code |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "The selector of the element to click, find from the page source code",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}