How can I use selenium to open up html files on my machine on a browser besides Firefox? When starting Selenium, the baseUrl is set to either a real website (www.google.com) and the initial open command of the test points to the local html file
selenium.open("file:///C:/to/local/file.html")
or the baseUrl is set directly to the local html file and the initial line in the test is
selenium.open("/")
Is there a way to run these tests with the browser set to *iexplore that will not crash selenium?