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

1.6 KiB

Home > puppeteer > Protocol > Debugger > SetBreakpointByUrlRequest

Protocol.Debugger.SetBreakpointByUrlRequest interface

Signature:

export interface SetBreakpointByUrlRequest 

Properties

Property Type Description
columnNumber integer Offset in the line to set breakpoint at.
condition string Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
lineNumber integer Line number to set breakpoint at.
scriptHash string Script hash of the resources to set breakpoint on.
url string URL of the resources to set breakpoint on.
urlRegex string Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.