How can I use selenium to open html files on my machine in a browser other than Firefox? When starting Selenium, baseUrl is installed either on a real website (www.google.com) or on the initial team of open testing of test points on a local html file
selenium.open("file:///C:/to/local/file.html")
or baseUrl is installed directly in the local html file, and the initial line in the test
selenium.open("/")
Is there a way to run these tests using a browser installed in * iexplore that will not cause selenium to fail?
source
share