I've downloaded IEDriver and tested both 32 and 64bit versions (I am running 64bit Windows 7) and I included the folder containing the EXE to path in environment variables.
I've restarted Eclipse and my whole system but still get the exception
selenium.common.exceptions.WebDriverException: Message:
'IEDriver executable needs to be available in the path.
Please download from http://code.google.com/p/selenium/downloads/list
and read up at http://code.google.com/p/selenium/wiki/InternetExplorerDriver'
Below is my test setup to launch IE:
def setUp(self):
self.driver = webdriver.Ie()
self.driver.implicitly_wait(30)
self.base_url = "https://accounts.google.com/"
self.verificationErrors = []
self.accept_next_alert = True
I'm stumped. I've had it working previously but removed it and now want to put it back on my system. I'm using Python 3.3, Eclipse 4.2.2, Selenium 2.31 and IE 10.0.92
Any ideas?