centos 安装谷歌浏览器和selenium环境


1,安装谷歌浏览器

vi /etc/yum.repos.d/google-chrome.repo

name=google-chrome
baseurl=https://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub

yum -y install google-chrome-stable –nogpgcheck

2,安装selenium

yum -y install epel-release

yum install python-pip -y

pip2.7 install  selenium

 

注意:

1,运行要用headless模式运行

chrome_options.add_argument(‘–headless’)

2,root身份运行添加

chrome_options.add_argument(‘–no-sandbox’)

原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/tech/aiops/268265.html

(0)
上一篇 2022年6月19日 05:04
下一篇 2022年6月19日 05:09

相关推荐

发表回复

登录后才能评论