check_page
Navigate to any URL and capture a screenshot along with runtime diagnostics like console errors, exceptions, and failed network calls to confirm the page renders cleanly after changes.
Instructions
Navigate to any URL (absolute, or a path relative to the dev server) and return a screenshot plus runtime diagnostics: console errors, uncaught exceptions, and failed network calls. The 'did my change break anything' workhorse — call it after editing to confirm the page still renders clean. Requires the dev server to be running.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL or path to check (e.g., "http://localhost:5173/login" or "/login"). | |
| public | No | Skip the configured login pre-step for this call — use for public routes (e.g. "/landing") so a broken/missing credential can't block them (default false). | |
| fullPage | No | Capture the full scrollable page instead of just the viewport (default false). | |
| settleMs | No | Extra milliseconds to wait after load before screenshotting (e.g. for animations). | |
| waitUntil | No | Navigation wait strategy (default networkidle). |