WebUi环境安装
WebUi环境安装
一、安装Selenium (指定阿里云镜像地址)
pip install selenium -i http://mirrors.aliyun.com/pypi/simple/
二、下载浏览器对应驱动
2.1 查看浏览器版本
2.2 安装浏览器驱动
访问https://developer.aliyun.com/mirror/NPM?from=tnpm
备用官网 http://chromedriver.storage.googleapis.com/index.html
2.2.1 查找谷歌浏览器驱动
2.2.2 下载对应版本的驱动,然后把文件解压后放到python所在目录
(补充:火狐浏览器驱动安装)
2.2.3 下载火狐浏览器
访问https://ftp.mozilla.org/pub/firefox/releases/ 获取需要的火狐浏览器安装包
2.2.4 找到浏览器对应的驱动版本并下载
下载地址https://github.com/mozilla/geckodriver/releases
参考:https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html
2.2.5 添加驱动到Python的Script目录下
三、测试验证
from selenium import webdriver
# 启动谷歌浏览器
d = webdriver.Chrome()
# 打开网页
d.get('http://www.baidu.com')
# 关闭浏览器及其驱动程序
d.quit()
查看浏览器是否正常打开网页