mac安装googledriver

1.下载地址:http://chromedriver.storage.googleapis.com/index.html
2.选择与所使用chrome版本对应的安装包
3.进入所选版本的文件夹打开其中notes.txt文件,有指定所支持的版本范围

例如:


4.将下载的可执行文件移到/usr/local/bin下 `

    sudo mv chromedriver /usr/local/bin/chromedriver

   

5.修改文件权限

    sudo chmod u+x,o+x  /chromedriver

  

6.检查是否安装成功

    chromedriver --version

referance:https://blog.csdn.net/zyl_842215935/article/details/79821129

原文地址:https://www.cnblogs.com/cheflone/p/13474923.html