browser_fill
Automate form filling by entering specified text into a targeted web input field using a CSS selector, streamlining repetitive data entry tasks in browser automation workflows.
Instructions
Fill a form input with text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for input field | |
value | Yes | Text to enter in the field |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for input field",
"type": "string"
},
"value": {
"description": "Text to enter in the field",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}