Table of Contents

Class BrowserDiscoveryResult

Namespace
OpenQA.Selenium.Manager
Assembly
Selenium.WebDriver.dll

Contains the paths to the discovered browser driver and browser executable.

public record BrowserDiscoveryResult : IEquatable<BrowserDiscoveryResult>
Inheritance
BrowserDiscoveryResult
Implements
Inherited Members

Constructors

BrowserDiscoveryResult(string, string)

Contains the paths to the discovered browser driver and browser executable.

public BrowserDiscoveryResult(string DriverPath, string BrowserPath)

Parameters

DriverPath string

The absolute path to the browser driver executable.

BrowserPath string

The absolute path to the browser executable.

Properties

BrowserPath

The absolute path to the browser executable.

[JsonPropertyName("browser_path")]
public string BrowserPath { get; init; }

Property Value

string

DriverPath

The absolute path to the browser driver executable.

[JsonPropertyName("driver_path")]
public string DriverPath { get; init; }

Property Value

string