Table of Contents

Class BrowserDiscoveryOptions

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

Provides optional configuration for browser and driver discovery.

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

Properties

BrowserPath

Gets or sets the path to the browser executable. When specified, Selenium Manager uses this path instead of detecting the browser location.

public string? BrowserPath { get; set; }

Property Value

string

BrowserVersion

Gets or sets the specific browser version to target (e.g., "120.0.6099.109"). If not specified, the installed browser version is detected automatically.

public string? BrowserVersion { get; set; }

Property Value

string

DriverVersion

Gets or sets the specific driver version to download (e.g., "120.0.6099.109"). If not specified, the driver version matching the browser version is selected automatically.

public string? DriverVersion { get; set; }

Property Value

string

Proxy

Gets or sets the proxy server URL for downloading browser drivers.

public string? Proxy { get; set; }

Property Value

string