select
Choose an option from dropdown menus on web pages using CSS selectors to automate form interactions during browser automation tasks.
Instructions
Select an option from a dropdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the select element | |
value | Yes | Value to select |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the select element",
"type": "string"
},
"value": {
"description": "Value to select",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}