Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,19 @@ protected override async Task<ExitCode> InvokeInternal(ILogger logger)
token.WaitHandle.WaitOne();
}

driver.Quit(); // Firefox driver hangs if Quit is not issued.
// close all tabs before quit is a workaround for broken Selenium - GeckoDriver communication in Firefox
// https://github.com/dotnet/runtime/issues/101617
logger.LogInformation($"Closing {driver.WindowHandles.Count} browser tabs before setting the main tab to config page and quitting.");
while (driver.WindowHandles.Count > 1)
{
driver.Navigate().GoToUrl("about:config");
driver.Navigate().GoToUrl("about:blank");
driver.Close(); //Close Tab
driver.SwitchTo().Window(driver.WindowHandles.Last());
}
driver.Navigate().GoToUrl("about:config");
driver.Navigate().GoToUrl("about:blank");
driver.Quit(); // Firefox driver hangs if Quit is not issued.
driverService.Dispose();
driver.Dispose();
}
Expand Down