Table of Contents

Class PausedEventArgs

Namespace
OpenQA.Selenium.DevTools.V146.Debugger
Assembly
Selenium.WebDriver.dll

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

public sealed class PausedEventArgs : EventArgs
Inheritance
PausedEventArgs
Inherited Members

Properties

AsyncCallStackTraceId

Never present, will be removed.

[JsonPropertyName("asyncCallStackTraceId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTraceId? AsyncCallStackTraceId { get; set; }

Property Value

StackTraceId

AsyncStackTrace

Async stack trace, if any.

[JsonPropertyName("asyncStackTrace")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? AsyncStackTrace { get; set; }

Property Value

StackTrace

AsyncStackTraceId

Async stack trace, if any.

[JsonPropertyName("asyncStackTraceId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTraceId? AsyncStackTraceId { get; set; }

Property Value

StackTraceId

CallFrames

Call stack the virtual machine stopped on.

[JsonPropertyName("callFrames")]
public CallFrame[] CallFrames { get; set; }

Property Value

CallFrame[]

Data

Object containing break-specific auxiliary properties.

[JsonPropertyName("data")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public object? Data { get; set; }

Property Value

object

HitBreakpoints

Hit breakpoints IDs

[JsonPropertyName("hitBreakpoints")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string[]? HitBreakpoints { get; set; }

Property Value

string[]

Reason

Pause reason.

[JsonPropertyName("reason")]
public string Reason { get; set; }

Property Value

string