browser_state
Inspect the current page's form fields, buttons, and tabs, and receive stable refs to use for filling, selecting, or clicking without custom selectors.
Instructions
List the current page's form fields, buttons and tabs.
Every field carries a ref string. Pass that same ref back to
fill_field / select_option / click_target; do not construct your
own CSS selector, because the references are already chosen to survive
the site's generated markup.
Fields with required: true must be filled before submitting.
field_type tells you which action to use:
text/email/tel/number/textarea/contenteditable -> fill_field
select/combobox/listbox -> select_option
radio/checkbox -> set_checkbox
file -> upload_file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_text | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |