browser_fill
Fill specified input fields using CSS selectors and values to automate form interactions in Chrome, bypassing anti-bot detection for web automation and testing tasks.
Instructions
fill out an input field
Args:
selector: CSS selector for input field - required
value: The value to fill - required
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"title": "Selector",
"type": "string"
},
"value": {
"title": "Value",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"title": "browser_fillArguments",
"type": "object"
}