From 53cb48494f6288e07125c43059478752c47b56c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20=C5=A0est=C3=A1k?= Date: Mon, 3 Jun 2024 23:08:36 +0100 Subject: [PATCH] Test of capabilities --- .../Drivers/Implementation/FirefoxHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Riganti.Selenium.Core/Drivers/Implementation/FirefoxHelpers.cs b/src/Core/Riganti.Selenium.Core/Drivers/Implementation/FirefoxHelpers.cs index ffc7d0fa..3ac6605c 100644 --- a/src/Core/Riganti.Selenium.Core/Drivers/Implementation/FirefoxHelpers.cs +++ b/src/Core/Riganti.Selenium.Core/Drivers/Implementation/FirefoxHelpers.cs @@ -31,7 +31,7 @@ public static FirefoxProfile GetFirefoxProfile() public static FirefoxOptions GetFirefoxOptions(System.Collections.Generic.IDictionary _options) { var options = new FirefoxOptions { Profile = GetFirefoxProfile() }; - options.BrowserVersion = _options.TryGet(nameof(options.BrowserVersion)); + //options.BrowserVersion = _options.TryGet(nameof(options.BrowserVersion)); return options; } }