I am doing automated testing using Selenium C # Webdriver. And after completing the tests, I want to close the browser.
I initialize the driver as follows:
var driver = new ChromeDriver();
Then, after doing something, I close it
driver.Close();
The browser closes correctly, but there is a window that launches this browser, which is still hanging. 
Is there any way to close it?
source share