centos7安装selenium
环境:centos7,python3,selenium,Chrome内核
1.安装python3
1 | yum install python3 |
2.安装selenium
1 | pip3 install selenium |
3.安装chrome浏览器
1 | yum update glib2 -y |
4.下载chromedriver内核
1 | wget http://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip |
5.解压此文件,并将文件移动到/usr/bin目录下
1 | unzip chromedriver_linux64.zip |
6.测试selenium是否可用
以上