fill_form
Automatically populate multiple web form fields simultaneously using CSS selectors to streamline data entry and reduce manual input time.
Instructions
Fill multiple form fields at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | Yes | Object with selector as key and value as text to fill |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"additionalProperties": {
"type": "string"
},
"description": "Object with selector as key and value as text to fill",
"type": "object"
}
},
"required": [
"fields"
],
"type": "object"
}