puppeteer/new-docs/puppeteer.protocol.debugger.pausedevent.md
2020-07-13 14:01:35 +01:00

1.8 KiB

Home > puppeteer > Protocol > Debugger > PausedEvent

Protocol.Debugger.PausedEvent interface

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Signature:

export interface PausedEvent 

Properties

Property Type Description
asyncCallStackTraceId Runtime.StackTraceId Never present, will be removed.
asyncStackTrace Runtime.StackTrace Async stack trace, if any.
asyncStackTraceId Runtime.StackTraceId Async stack trace, if any.
callFrames CallFrame[] Call stack the virtual machine stopped on.
data any Object containing break-specific auxiliary properties.
hitBreakpoints string[] Hit breakpoints IDs
reason ('ambiguous' | 'assert' | 'debugCommand' | 'DOM' | 'EventListener' | 'exception' | 'instrumentation' | 'OOM' | 'other' | 'promiseRejection' | 'XHR') Pause reason.