I am doing some automated testing with Selenium C# Webdriver. And after finishing the tests I want to close the browser.
I initialize the driver with the following:
var driver = new ChromeDriver();
And then after doing something I am closing it with
driver.Close();
The browser is correcly closes, but there is a window which starts this browser which is still hanging.
Is there a way to close it as well?