参考:https://www.cnblogs.com/lilyo/p/11959494.html
打开chrome浏览器输入:chrome://settings/help 查看当前chrome版本
下载对应的chromedriver版本
网址:https://chromedriver.storage.googleapis.com/index.html
把chromedriver放在/usr/local/bin目录下
这个目录是隐藏的,所以随便打开一个Finder,然后command+shift+G
在相应环境下
pip install selenium
即可完成安装
测试
# -*- coding:utf-8 -*- # Author:Lily from selenium import webdriver # 导入webdriver driver = webdriver.Chrome() # 实例化Chrome浏览器 driver.get("http://www.baidu.com") # 打开http://www.baidu.com
如果没有移动的话,会显示
如果把ChromeDriver移动到上述相应位置/usr/local/bin
即可用python打开模拟浏览器
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)