browser_select
Automate dropdown selections on web pages by specifying a CSS selector and the desired value or label, integrating with browser automation for efficient web interactions.
Instructions
Select an option from a dropdown menu
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for select element | |
value | Yes | Value or label to select |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for select element",
"type": "string"
},
"value": {
"description": "Value or label to select",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}