I simply cannot get Selenium to clean up after navigating to a page. (Without the Navigate().GoToURL(), it tears down nicely.) I understand the supposed difference between Close(), Quit(), and Dispose(). I've tried every combination I could think of. I must be missing something. If I have to shut them down myself --if that's the solution... I honestly have no clue, but that's fine. I would just like to know if I am missing something in terms of using Selenium. Any help greatly appreciated.
// no iexplore windows open
IWebDriver f = new InternetExplorerDriver();
f.Navigate().GoToUrl("http://abcdxpq.com");
f.Close();
f.Quit();
f.Dispose();
// iexplore window left open (http://abcdxpq.com)