python运行时提示WebDriverException: Message: 'geckodriver' executable needs to be in PATH.

selenium:ChromeDriver executable needs to be available in path

安装


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

问题解决:最后在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



你可能感兴趣的:(python运行时提示WebDriverException: Message: 'geckodriver' executable needs to be in PATH.)