Table of Contents

Class LogEntry

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

Log entry.

public sealed record LogEntry : IEquatable<LogEntry>
Inheritance
LogEntry
Implements
Inherited Members

Constructors

LogEntry(string, string, string, Timestamp)

Log entry.

public LogEntry(string Source, string Level, string Text, Timestamp Timestamp)

Parameters

Source string

Log entry source.

Level string

Log entry severity.

Text string

Logged text.

Timestamp Timestamp

Timestamp when this entry was added.

Properties

Args

Call arguments.

public ImmutableArray<RemoteObject>? Args { get; init; }

Property Value

ImmutableArray<RemoteObject>?

Category

public string? Category { get; init; }

Property Value

string

Level

Log entry severity.

public string Level { get; init; }

Property Value

string

LineNumber

Line number in the resource.

public long? LineNumber { get; init; }

Property Value

long?

NetworkRequestId

Identifier of the network request associated with this entry.

public RequestId? NetworkRequestId { get; init; }

Property Value

RequestId

Source

Log entry source.

public string Source { get; init; }

Property Value

string

StackTrace

JavaScript stack trace.

public StackTrace? StackTrace { get; init; }

Property Value

StackTrace

Text

Logged text.

public string Text { get; init; }

Property Value

string

Timestamp

Timestamp when this entry was added.

public Timestamp Timestamp { get; init; }

Property Value

Timestamp

Url

URL of the resource if known.

public string? Url { get; init; }

Property Value

string

WorkerId

Identifier of the worker associated with this entry.

public string? WorkerId { get; init; }

Property Value

string