select
Automatically select an element with a SELECT tag using a CSS selector and specified value, facilitating browser automation for testing consent management platforms.
Instructions
Select an element 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"
}