mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.6 KiB
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. |