see_page
Take a single-page snapshot that returns a screenshot, interactive element map, and page text. Use it to plan and run browser actions without recapturing between steps.
Instructions
Capture a snapshot of the current page. Returns a screenshot image together with optional full-page text, an interactive element map (buttons, links, inputs with position and selector), and an iframe inventory — all in a single call.
Workflow: Call once with fullPage:true and annotate:true. From that snapshot, run all planned actions (click, type, scroll, wait, extract) as a steps array without re-capturing the page. Call see_page again only when the page genuinely changes (new navigation, modal, or dynamic content load).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | File path to also save the screenshot image | |
| steps | No | Actions to run sequentially right after capturing the page, without re-capturing between steps. Supported: click, type, press_key, scroll, wait, extract, see, drag, hover, double_click, triple_click, idle. | |
| format | No | jpeg | |
| quality | No | JPEG quality 0-100 | |
| annotate | No | Draw numbered bounding boxes over interactive elements for precise targeting | |
| fullPage | No | Capture the full scrollable page instead of only the visible viewport | |
| autoHover | No | Hover over navigation menus before capturing to reveal dropdowns | |
| maxElements | No | Maximum number of interactive elements to map | |
| scanIframes | No | List embedded iframes with their index and URL | |
| stopOnError | No | Stop step execution on first failure | |
| captureAfter | No | Take a screenshot after the steps array completes | |
| captureBefore | No | Take a screenshot before running the steps array | |
| includeDomText | No | Include the full DOM text content | |
| watchMutations | No | Report DOM mutations (popups, alerts) since the last capture | |
| includeElements | No | Include the interactive element map in the response | |
| includePageText | No | Include cleaned page text |