puppeteer_select
Use this tool to select an element on a web page by specifying a CSS selector and the desired value, enabling precise interaction with dropdowns or selectable elements in browser automation.
Instructions
Select an element on the page with Select tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for element to select | |
value | Yes | Value to select |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for element to select",
"type": "string"
},
"value": {
"description": "Value to select",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}