browser_set_combobox
Selects one or multiple values from autocomplete/combobox inputs by typing a query, waiting for the filtered listbox, and clicking the option. Handles lazy-loaded options where standard select fails.
Instructions
Set value(s) on an autocomplete/combobox input. Handles the click → type query → wait for filtered listbox → click option flow as one MCP call. Supports multi-select (e.g., Languages on Meta Ads). Use when browser_select_option fails because options render lazily after typing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| multi | No | True if combobox accepts multiple values (chips). Default: auto-detected from presence of values array | |
| value | No | Single value to select (use this OR values) | |
| values | No | Array of values for multi-select. E.g. ["Danish", "English", "Swedish"] | |
| wait_ms | No | Max ms to wait for options listbox to appear after typing (default: 3000) | |
| selector | Yes | CSS selector for the combobox/autocomplete input | |
| query_chars | No | How many characters to type as filter query (default: 4 or full value length, whichever is smaller) |