WebDriverException: Message: 'IEDriverServer.exe' executable needs to be in PATH. Please download fr

来源:互联网 发布:软件编写入门 编辑:程序博客网 时间:2024/06/07 10:41

详细描述:想用chrome浏览器来执行测试用例,按照官方文档http://code.google.com/p/selenium/wiki/ChromeDriver 的步骤操作后还是报WebDriverException: Message: 'ChromeDriver executable needs to be available ipath的错,配了系统环境变量重启后也没用。

问题解决:最后在stackoverflow上找到答案,原答案地址:

http://stackoverflow.com/questions/8255929/running-webdriver-chrome-with-selenium

用下面这种方法设环境变量就ok啦:

import os
from selenium import webdriver
chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
os.environ["webdriver.chrome.driver"] = chromedriver
driver =  webdriver.Chrome(chromedriver)
driver.get("http://stackoverflow.com")
driver.quit()



2.我相信很多人会去手写Python脚本

请大家注意调用浏览器首字母要大写,如:Firefox,Chrome,Ie

3.注意得把IEDriverServer跟chromedriver放到对应浏览器的安装目录下

配置浏览器的环境变量Path:如

Chrome:C:\Users\wyx\AppData\Local\Google\Chrome\Application

4.在python的安装目录下也放IEDriverServer,chromedriver

0 0