blob: 840be91cc6083c9ea75cfc9689620941c02bd9d6 [file] [log] [blame] [edit]
namespace OpenQA.Selenium.Chrome
{
public class StableChannelChromeDriver : ChromeDriver
{
public StableChannelChromeDriver()
: base(DefaultOptions)
{
}
// Required for dynamic setting with `EnvironmentManager.Instance.CreateDriverInstance(options)`
public StableChannelChromeDriver(ChromeOptions options)
: base(options)
{
}
public StableChannelChromeDriver(ChromeDriverService service, ChromeOptions options)
: base(service, options)
{
}
public static ChromeOptions DefaultOptions
{
get { return new ChromeOptions() { BrowserVersion = "122" }; }
}
}
}