Não é possível iniciar o Internet Explorer por meio de ligações Python do Selenium WebDriver

Eu fiz o download do IEDriver e testei as versões de 32 e 64 bits (estou executando o Windows 7 de 64 bits) e incluí a pasta que contém o caminho do EXE em variáveis ​​de ambiente.

Eu reiniciei o Eclipse e todo o meu sistema, mas ainda obter a exceção

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' 

Abaixo está minha configuração de teste para iniciar o 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

Estou perplexo. Eu tive que trabalhar anteriormente, mas removi e agora quero colocá-lo de volta no meu sistema. Estou usando o Python 3.3, o Eclipse 4.2.2, o Selenium 2.31 e o IE 10.0.92

Alguma ideia?

questionAnswers(2)

yourAnswerToTheQuestion