目录
linux chrome + chromedriver
chrome
# 下载
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# 安装
sudo dpkg -i google-chrome-stable_current_amd64.deb
# 查看版本
google-chrome --version
chromedriver
# 注意找到和chrome版本对应的chromedriver
# 新版访问 https://googlechromelabs.github.io/chrome-for-testing/#stable
wget 对应的chromedriver url
unzip chromedriver-linux64.zip
cd chromedriver-linux64
mv chromedriver /usr/bin
标签:google,chrome,linux,chromedriver,linux64,stable
From: https://www.cnblogs.com/yizhisanshui/p/18206437