diff --git a/src/NzbDrone.Automation.Test/AutomationTest.cs b/src/NzbDrone.Automation.Test/AutomationTest.cs index c3de80202..f58988935 100644 --- a/src/NzbDrone.Automation.Test/AutomationTest.cs +++ b/src/NzbDrone.Automation.Test/AutomationTest.cs @@ -36,7 +36,9 @@ namespace NzbDrone.Automation.Test { var options = new FirefoxOptions(); options.AddArguments("--headless"); - driver = new FirefoxDriver(options); + FirefoxDriverService service = FirefoxDriverService.CreateDefaultService(); + // service.Host = "::1"; // Workaround netcore/selenium bug https://github.com/SeleniumHQ/selenium/issues/7840 + driver = new FirefoxDriver(service, options, new System.TimeSpan(0,3,0)); _runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger()); _runner.KillAll();