美文网首页
Windows下配置WebDriver

Windows下配置WebDriver

作者: 你说我对钱一往情深 | 来源:发表于2019-05-29 15:33 被阅读0次

1、下载WebDriver

下载Chrome对应版本的webdriverWebDriver的下载链接
解压之后,把chromedriver.exe放到安装目录之下,默认的是C:\Program Files (x86)\Google\Chrome\Application

image.png

2、配置环境变量

在系统变量的path路径下增加C:\Program Files (x86)\Google\Chrome\Application\就可以了
找到系统变量的path

image.png
增加C:\Program Files (x86)\Google\Chrome\Application
image.png

3、测试

from selenium import webdriver
browser = webdriver.Chrome()
browser.get('http://www.baidu.com/')

安装好selenium的包,运行上述代码之后如果自动弹出百度页,就证明配置成功啦!

相关文章

网友评论

      本文标题:Windows下配置WebDriver

      本文链接:https://www.haomeiwen.com/subject/lwsytctx.html