Centos7安装Chrome浏览器 和ChromeDriver

一.创建yum源文件

在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo

cd /etc/yum.repos.d/
vim google-chrome.repo

二.输入yum源信息

[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

三.安装google chrome

yum -y install google-chrome-stable --nogpgcheck

四、查看安装版本

google-chrome --version

五、安装chromdriver

wget http://chromedriver.storage.googleapis.com/70.0.3538.16/chromedriver_linux64.zip

直接解压

你可能感兴趣的:(Linux)