reloadPage
Reload the connected page via Chrome DevTools Protocol to apply source changes and ensure debugger statements and breakpoints resolve correctly.
Instructions
[STEP 5a] Reload the connected page via Chrome DevTools Protocol. More reliable than manual browser refresh — maintains the CDP connection and ensures debugger; statements and setBreakpoint() calls resolve correctly when scripts reload. Always call this after inserting debugger; in source code or after setBreakpoint(), before waitForSpecificPause/waitForPause.
⚠️ CRITICAL TURN RULE: After this tool returns, you MUST immediately call waitForSpecificPause (or waitForPause) in the SAME AI turn — do NOT end your turn here. waitForSpecificPause is a blocking call that will notify the user to trigger the page action and wait for the breakpoint internally. If you end your turn after reloadPage, the session will break.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ignoreCache | No | Hard reload ignoring cache (default false) |