Table of Contents

Class LogEntry

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

Log entry.

public sealed class LogEntry
Inheritance
LogEntry
Inherited Members

Properties

Args

Call arguments.

[JsonPropertyName("args")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public RemoteObject[]? Args { get; set; }

Property Value

RemoteObject[]

Category

category

[JsonPropertyName("category")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public LogEntryCategoryValues? Category { get; set; }

Property Value

LogEntryCategoryValues?

Level

Log entry severity.

[JsonPropertyName("level")]
public LogEntryLevelValues Level { get; set; }

Property Value

LogEntryLevelValues

LineNumber

Line number in the resource.

[JsonPropertyName("lineNumber")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? LineNumber { get; set; }

Property Value

long?

NetworkRequestId

Identifier of the network request associated with this entry.

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

Property Value

string

Source

Log entry source.

[JsonPropertyName("source")]
public LogEntrySourceValues Source { get; set; }

Property Value

LogEntrySourceValues

StackTrace

JavaScript stack trace.

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

Property Value

StackTrace

Text

Logged text.

[JsonPropertyName("text")]
public string Text { get; set; }

Property Value

string

Timestamp

Timestamp when this entry was added.

[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }

Property Value

double

Url

URL of the resource if known.

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

Property Value

string

WorkerId

Identifier of the worker associated with this entry.

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

Property Value

string