browser_form_input
Set the value of any standard form control (input, textarea, select, checkbox, radio) directly in the DOM, triggering input and change events for framework compatibility.
Instructions
Set a form control's value directly in the DOM: input/textarea/contenteditable (text), select (option value or label), checkbox/radio ("true"/"false"). Fires input/change events so frameworks pick the value up. Mutating. Target by CSS selector or ref. Reliable for plain form fields; rich editors (CodeMirror and the like) and custom comboboxes often ignore it — for those, click the field with browser_computer and type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ref | No | ref from browser_read_page/browser_find | |
| tabId | Yes | tab id from browser_tabs_list or browser_tab_create | |
| value | Yes | new value; for checkbox/radio pass "true" or "false" | |
| selector | No | CSS selector |