screenshot_session
Screenshot a browser session page to capture state at a specific point in a workflow. Returns the image path; option to capture full page, viewport, or a single element.
Instructions
Screenshot the session's current page as-is — no actions performed. Returns the image path (full-page by default; full_page=false captures just the viewport). Full-page captures are PREPARED for fidelity: sticky/fixed headers are neutralized (no mid-page duplication), animations disabled, reduced-motion emulated, and scroll-reveal sections forced visible — the applied steps are reported in capture_prep. Pass raw=true to capture the unprepared stitch. Use to grab state at a point in a workflow; interactive tools already return screenshots, so don't call this after every step.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | Skip full-page capture preparation (sticky neutralization, reveal forcing) and capture the raw Playwright stitch (default: false). Only affects full-page captures. | |
| selector | No | Clip to one element: screenshot just the first match (for citing evidence). Overrides full_page. | |
| full_page | No | Capture full scrollable page (default: true) | |
| session_id | Yes | Session ID |