Selenium+Python 自动化测试环境搭建

换了电脑,以前配置的 chromedriver 啥的都不能用了,所以还得再配一遍

防止以后再用,遂记录下来


chromedriver 的下载地址:
https://sites.google.com/a/chromium.org/chromedriver/downloads

至于 chromedriver 的放置位置

讲道理是应该放在 chrome 文件夹下

如下图:

Selenium+Python 自动化测试环境搭建_第1张图片

并且还得在环境变量 Path 中添加

C:\Program Files (x86)\Google\Chrome\Application

这个玩意。


但是好像得等重启电脑后,新配置的环境变量才能生效,不像CentOS 重新激活一下就可以用了,好麻烦。。。


遂采用一种见到暴力的方式

如下图:

Selenium+Python 自动化测试环境搭建_第2张图片

直接把 chromedriver 丢到了 python 的目录下,这样直接就可以用啦~~~~

(~ ̄▽ ̄)~


https://sites.google.com/a/chromium.org/chromedriver/downloads

http://blog.csdn.net/xionghuixionghui/article/details/63683110

http://www.cnblogs.com/fnng/archive/2013/05/29/3106515.html


你可能感兴趣的:(Selenium自动化测试)