Table of Contents

Class StackTrace

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

Call frames for assertions or error messages.

public sealed class StackTrace
Inheritance
StackTrace
Inherited Members

Properties

CallFrames

JavaScript function name.

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

Property Value

CallFrame[]

Description

String label of this stack trace. For async traces this may be a name of the function that initiated the async call.

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

Property Value

string

Parent

Asynchronous JavaScript stack trace that preceded this stack, if available.

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

Property Value

StackTrace

ParentId

Asynchronous JavaScript stack trace that preceded this stack, if available.

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

Property Value

StackTraceId