大家好,又见面了,我是你们的朋友全栈君。
下载地址
使用selenium时,要确保所用的chrome浏览器跟chrome驱动版本对应,否则就会报错。
驱动下载地址
http://chromedriver.storage.proxy.ustclug.org/index.html
77.0版本
chromedriver.storage.proxy.ustclug.org/index.html
http://chromedriver.storage.proxy.ustclug.org/index.html
安装办法
粘到指定的位置
C:ProgramDataAnaconda3Scripts
谷歌浏览器程序所在目录
添加到环境变量
执行代码测试运行
代码语言:javascript复制from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.sina.com')
1.驱动下载完成,解压
2.将解压后文件chromedriver.exe复制到python的Scripts安装目录下(我的:E:PythonPython36-32Scripts),并且添加到path环境变量
3.将目录chrome的安装目录添加到path环境变量。(我的:C:Program Files (x86)GoogleChromeApplicationchrome.exe)
4.运行下面代码:成功打开百度即为成功:
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/130373.html原文链接:https://javaforall.cn