browser_select
Automates selecting elements with Select tags on web pages using CSS selectors and specified values, ideal for web automation and scraping on sites with bot protection.
Instructions
Select an element on the page with Select tag
Args:
selector: CSS selector for element to select - required
value: The value to select - 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_selectArguments",
"type": "object"
}