Table of Contents

Class LogEntry

Namespace
OpenQA.Selenium.DevTools
Assembly
WebDriver.dll

Represents information about a log entry when the browser console is written to.

public class LogEntry
Inheritance
LogEntry
Inherited Members

Constructors

LogEntry(string, string)

Initializes a new instance of the LogEntry type.

public LogEntry(string kind, string message)

Parameters

kind string

The kind of message written to the log.

message string

The text of the message written to the log.

Properties

Kind

Gets the kind of message written to the log.

public string Kind { get; }

Property Value

string

Message

Gets the text of the message written to the log.

public string Message { get; }

Property Value

string