Table of Contents

Class DebuggerDomainEvent

Namespace
Selenium.WebDriver.BiDi.Cdp.Debugger
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Provides static event descriptors for the IDebugger.

public static class DebuggerDomainEvent
Inheritance
DebuggerDomainEvent
Inherited Members

Properties

BreakpointResolved

Fired when breakpoint is resolved to an actual script and location. Deprecated in favor of resolvedBreakpoints in the scriptParsed event.

public static EventDescriptor<CdpEventArgs<BreakpointResolvedEventArgs>> BreakpointResolved { get; }

Property Value

EventDescriptor<CdpEventArgs<BreakpointResolvedEventArgs>>

Paused

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

public static EventDescriptor<CdpEventArgs<PausedEventArgs>> Paused { get; }

Property Value

EventDescriptor<CdpEventArgs<PausedEventArgs>>

Resumed

Fired when the virtual machine resumed execution.

public static EventDescriptor<CdpEventArgs<ResumedEventArgs>> Resumed { get; }

Property Value

EventDescriptor<CdpEventArgs<ResumedEventArgs>>

ScriptFailedToParse

Fired when virtual machine fails to parse the script.

public static EventDescriptor<CdpEventArgs<ScriptFailedToParseEventArgs>> ScriptFailedToParse { get; }

Property Value

EventDescriptor<CdpEventArgs<ScriptFailedToParseEventArgs>>

ScriptParsed

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

public static EventDescriptor<CdpEventArgs<ScriptParsedEventArgs>> ScriptParsed { get; }

Property Value

EventDescriptor<CdpEventArgs<ScriptParsedEventArgs>>