linux下配置selenium运行环境
自己安装的步骤记录下##### 1.chrome安装:
```
1.创建yum源文件
cd /etc/yum.repo.d/
touch google-chrome.repo
2.输入yum源信息
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
3.安装google chrome
yum -y install google-chrome-stable --nogpgcheck
版本查看 google-chrome --version
如果是更新执行yum update google-chrome-stable
```
##### 2.chromedriver安装:
```
1)版本对应关系:http://chromedriver.chromium.org/downloads
2)驱动版本:https://chromedriver.storage.googleapis.com/index.html
3)将压缩包解压:/usr/bin/chromedriver
```
##### 3.启动配置(代码添加)
```
–disable-dev-shm-usage
--disable-gpu
--no-sandbox
--headless
```
页:
[1]