Class BrowserDiscoveryResult
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
DriverPathstringThe absolute path to the browser driver executable.
BrowserPathstringThe 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
DriverPath
The absolute path to the browser driver executable.
[JsonPropertyName("driver_path")]
public string DriverPath { get; init; }