chromedriver与chrome各版本对照及下载

☛谷歌浏览器 chrome 下载地址
☛谷歌驱动 chromeDriver 下载地址

☛查看chrome版本号

# google-chrome --version

linux下chrome和chromedriver的安装

  • 1、安装chrome

用下面的命令安装最新的 Google Chrome

# yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

也可以下载到本地再安装

# wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
# yum install ./google-chrome-stable_current_x86_64.rpm

安装必要的库

# yum install mesa-libOSMesa-devel gnu-free-sans-fonts wqy-zenhei-fonts

卸载安装包
先列出所有被安装的package,在进行卸载

# rpm -qa|grep google
# rpm -e --nodeps google-chrome-stable-83.0.4103.116-1.x86_64 (要卸载的软件包)
或# yum -y remove google-chrome-stable-83.0.4103.116-1.x86_64 (不建议使用)

在这里插入图片描述

  • 2、安装 chromedriver
chrome官网 # wget https://chromedriver.storage.googleapis.com/2.38/chromedriver_linux64.zip
淘宝源(推荐)# wget http://npm.taobao.org/mirrors/chromedriver/2.41/chromedriver_linux64.zip

将下载的文件解压,放在如下位置

# unzip chromedriver_linux64.zip
# /usr/bin/chromedriver

给予执行权限

# chmod +x /usr/bin/chromedriver

chrome和chromeDriver映射表
chromedriver与chrome各版本对照及下载_第1张图片
参考:
文章1
文章2

你可能感兴趣的:(浏览器相关,运维)