Chrome Debug MCP Server

select

Select an option in a dropdown

Input Schema

NameRequiredDescriptionDefault
selectorYesCSS selector for select element
valueYesOption value or label to select

Input Schema (JSON Schema)

{ "properties": { "selector": { "description": "CSS selector for select element", "type": "string" }, "value": { "description": "Option value or label to select", "type": "string" } }, "required": [ "selector", "value" ], "type": "object" }