web_act
Open a URL, run ordered browser actions, and return the final page as Markdown in one shot. Use for scripted clicks, typing, scrolling, waits, and verification.
Instructions
Open a URL in a browser, run a list of actions and return the resulting page. One shot with no session: for several steps on one login or cart use browser_open + browser_do. Take a web_snapshot first and name elements by ref. Actions: click, type, fill, press, hover, select, scroll (until:'stable' loads everything), wait, eval, goto, verify, console, screenshot, hold; each is an object with do and the fields it needs. Returns per-action results and the final page as markdown.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page to open first. | |
| tier | No | Browser tier: browser, stealth, real (default), warm. | |
| proxy | No | Proxy URL for this run only; web_route sets one per domain. | |
| actions | Yes | Steps, in order, e.g. `[{"do":"type","ref":"e3","text":"shoes"},{"do":"press","key": "Enter"},{"do":"wait","selector":".results"}]`. | |
| profile | No | Profile saved by web_login whose cookies to use. | |
| timeout | No | Timeout in ms for the whole interaction. Default 90000. | |
| extraction | No | markdown (default), text, or html for the final page. |