playwright_select
Automatically select a specific option in a dropdown element using a CSS selector and desired value, streamlining UI interactions in the AI Vision Debug MCP Server.
Instructions
Select an option in a dropdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the select element | |
value | Yes | Value or label of the option to select |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the select element",
"type": "string"
},
"value": {
"description": "Value or label of the option to select",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}