centos7 安装指定版本的chrome + chromedriver
谷歌浏览器历史版本相关地址:https://www.chromedownloads.net/chrome64win/
驱动下载地址:https://registry.npmmirror.com/binary.html?path=chromedriver
上传下载好的chrome和chromediriver到centos服务器中
解压后上传
安装chrome
yum localinstall -y google-chrome-stable_current_x86_64.rpm
查看版本
google-chrome --version
安装chromedriver
拷贝当前目录中的chromedriver到/usr/bin/
sudo cp chromedriver /usr/bin/
给予执行权限
chmod +x /usr/bin/chromedriver
查看版本
chromedriver --version