browser_select_option
Select a specific option from a dropdown element within a browser instance on the Concurrent Browser MCP server. Specify element selector, value, and optional timeout for efficient automation.
Instructions
Select an option from a dropdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceId | Yes | Instance ID | |
selector | Yes | Element selector | |
timeout | No | Timeout in milliseconds | |
value | Yes | Value to select |
Input Schema (JSON Schema)
{
"properties": {
"instanceId": {
"description": "Instance ID",
"type": "string"
},
"selector": {
"description": "Element selector",
"type": "string"
},
"timeout": {
"default": 30000,
"description": "Timeout in milliseconds",
"type": "number"
},
"value": {
"description": "Value to select",
"type": "string"
}
},
"required": [
"instanceId",
"selector",
"value"
],
"type": "object"
}