docs/src/api/class-debugger.md
API for controlling the Playwright debugger. The debugger allows pausing script execution and inspecting the page.
Obtain the debugger instance via [property: BrowserContext.debugger].
Emitted when the debugger pauses or resumes.
location <[Object]>
file <[string]>line ?<[int]>column ?<[int]>title <[string]>Returns details about the currently paused call. Returns null if the debugger is not paused.
Configures the debugger to pause before the next action is executed.
Throws if the debugger is already paused. Use [method: Debugger.next] or [method: Debugger.runTo] to step while paused.
Note that [method: Page.pause] is equivalent to a "debugger" statement — it pauses execution at the call site immediately. On the contrary, [method: Debugger.requestPause] is equivalent to "pause on next statement" — it configures the debugger to pause before the next action is executed.
Resumes script execution. Throws if the debugger is not paused.
Resumes script execution and pauses again before the next action. Throws if the debugger is not paused.
Resumes script execution and pauses when an action originates from the given source location. Throws if the debugger is not paused.
location <[Object]>
file <[string]>line ?<[int]>column ?<[int]>The source location to pause at.