Table of Contents

Class ConsoleMessage

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

Console message.

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

Constructors

ConsoleMessage(string, string, string)

Console message.

public ConsoleMessage(string Source, string Level, string Text)

Parameters

Source string

Message source.

Level string

Message severity.

Text string

Message text.

Properties

Column

Column number in the resource that generated this message (1-based).

public long? Column { get; init; }

Property Value

long?

Level

Message severity.

public string Level { get; init; }

Property Value

string

Line

Line number in the resource that generated this message (1-based).

public long? Line { get; init; }

Property Value

long?

Source

Message source.

public string Source { get; init; }

Property Value

string

Text

Message text.

public string Text { get; init; }

Property Value

string

Url

URL of the message origin.

public string? Url { get; init; }

Property Value

string