步骤
1.python安装selenium
pip install selenium
2.下载安装chrome和Chromedriver
注意:两者大版本号要保持一致。例如,我的谷歌浏览器版本117.+,那么Chromedriver也需要117.+才行。
[图片上传失败...(image-461a41-1700208521836)]
Chromedriver下载地址:
Chromedriver版本(版本<=114)
下载地址(选择自己需要的版本):http://chromedriver.storage.googleapis.com/index.html
Chromedriver更高版本(117<=版本<=119):点我跳转
或:https://googlechromelabs.github.io/chrome-for-testing/#stable
3.安装Chromedriver
Mac:
安装Chromedrive
将下载好的可执行文件移动到/usr/local/bin目录中;
在Mac终端输入:sudo mv chromedriver /usr/local/bin
4.测试Chromedrive是否可用
写一个.py文件,用以下代码测试,如果能成功打开谷歌浏览器,跳转到百度,3秒后自动关闭。即Chromedrive是可用的。
from selenium import webdriver
wd = webdriver.Chrome()
wd.get("https://www.baidu.com") # 打开百度浏览器
time.sleep(3) #等待3秒
wd.quit() #关闭浏览器
Python+Selenium基础入门及实践(https://www.jianshu.com/p/1531e12f8852)