select-option
Use a specific selector and value to select an option in a web page, enabling precise interaction with elements via the AdsPower LocalAPI MCP Server.
Instructions
Select the option
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | The selector of the option to select, find from the page source code | |
value | Yes | The value of the option to select |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "The selector of the option to select, find from the page source code",
"type": "string"
},
"value": {
"description": "The value of the option to select",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}