waitForPause
Blocks until any debugger pause occurs (breakpoint, statement, or exception). Prompts the user to trigger the pause; use when the exact location is unknown.
Instructions
[STEP 5b — FALLBACK] BLOCKING call — waits until ANY debugger pause occurs (breakpoint, debugger; statement, or exception). Before blocking, sends a notification to the user to trigger the page action. Must be called IMMEDIATELY after reloadPage() in the SAME AI turn — do NOT end your turn before calling this. Prefer waitForSpecificPause when you know the exact file and line — it uses smarter two-tier matching. Use this only when the target location is unknown or when setBreakpoint is used without a specific line.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | Timeout in milliseconds (default 30000) | |
| actionHint | No | Optional hint to tell the user what action to perform on the page (e.g. 'click the button', 'submit the form'). |