SetEventListenerBreakpointRequest

@Serializable
data class SetEventListenerBreakpointRequest(val eventName: String, val targetName: String? = null)

Request object containing input parameters for the DOMDebuggerDomain.setEventListenerBreakpoint command.

Constructors

Link copied to clipboard
constructor(eventName: String, targetName: String? = null)

Types

Link copied to clipboard
class Builder(val eventName: String)

A builder for SetEventListenerBreakpointRequest, which allows setting the optional parameters of the DOMDebuggerDomain.setEventListenerBreakpoint command via a lambda.

Properties

Link copied to clipboard

DOM Event name to stop on (any DOM event will do).

Link copied to clipboard
val targetName: String? = null

EventTarget interface name to stop on. If equal to "*" or not provided, will stop on any EventTarget.