chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.debugger / SetBreakpointByUrlRequest

SetBreakpointByUrlRequest

data class SetBreakpointByUrlRequest

Request object containing input parameters for the DebuggerDomain.setBreakpointByUrl command.

Constructors

<init>

Request object containing input parameters for the DebuggerDomain.setBreakpointByUrl command.

SetBreakpointByUrlRequest(lineNumber: Int, url: String? = null, urlRegex: String? = null, scriptHash: String? = null, columnNumber: Int? = null, condition: String? = null)

Properties

columnNumber

Offset in the line to set breakpoint at.

val columnNumber: Int?

condition

Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.

val condition: String?

lineNumber

Line number to set breakpoint at.

val lineNumber: Int

scriptHash

Script hash of the resources to set breakpoint on.

val scriptHash: String?

url

URL of the resources to set breakpoint on.

val url: String?

urlRegex

Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified.

val urlRegex: String?