fill-input
Automate input field population in AdsPower browser profiles by specifying CSS selectors and text content, enhancing workflow automation with AdsPower LocalAPI MCP Server.
Instructions
Fill the input
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | The selector of the input to fill, find from the page source code | |
| text | Yes | The text to fill in the input |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "The selector of the input to fill, find from the page source code",
"type": "string"
},
"text": {
"description": "The text to fill in the input",
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}