本文主要是介绍Centos 7 部署 selenium + chrome + chromedriver,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Centos 7 部署 selenium + chrome + chromedriver
版本要求:
centos 7
selenium >= 3.14
chrome 与 chromedriver 版本对应
NO.1 安装 chrome
curl https://intoli.com/install-google-chrome.sh | bash
google-chrome-stable --version # 查看版本,确认是否安装成功
NO.2 安装 chromedriver
wget https://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
sudo mv chromedriver /usr/local/bin/
chromedriver -v # 查看版本,确认是否安装成
这篇关于Centos 7 部署 selenium + chrome + chromedriver的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!