Table of Contents

Class ConsoleApiArgument

Namespace
OpenQA.Selenium.DevTools
Assembly
WebDriver.dll

Represents information about a an argument in call to the browser's console API.

public class ConsoleApiArgument
Inheritance
ConsoleApiArgument
Inherited Members

Constructors

ConsoleApiArgument(string, string?)

Initializes a new instance of the ConsoleApiArgument type.

public ConsoleApiArgument(string type, string? value)

Parameters

type string

The type of the argument in the call to the browser's console API.

value string

The value of the argument in the call to the browser's console API.

Exceptions

ArgumentNullException

If type is null.

Properties

Type

Gets the type of the argument in the call to the browser's console API.

public string Type { get; }

Property Value

string

Value

Gets the value of the argument in the call to the browser's console API.

public string? Value { get; }

Property Value

string