Linux虚拟机安装谷歌浏览器和驱动
配置软件源vim /etc/yum.repos.d/google.repo[google]name=Google-x86_64baseurl=http://dl.google.com/linux/rpm/stable/x86_64enabled=1gpgcheck=0gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub更新yum源
·
配置软件源
vim /etc/yum.repos.d/google.repo
[google]
name=Google-x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=0
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
更新yum源
yum update
在centos中安装我们的chrome浏览器
yum install google-chrome-stable
查看浏览器的版本
google-chrome --version
下载谷歌浏览器驱动
https://npm.taobao.org/mirrors/chromedriver/
下载linux版本
给予权限
如果要使打包好的jar包上传到Linux上运行浏览器操作,需要添加一下下面几行代码
ChromeOptions chromeOptions=new ChromeOptions();
chromeOptions.addArguments("--headless"); //隐藏浏览器运行
chromeOptions.addArguments("--disable-gpu");// 关闭GPU
chromeOptions.addArguments("--no-sandbox");//给予root执行权限
ChromeDriver webDriver=new ChromeDriver(chromeOptions);
addArguments来配置参数
更多推荐
已为社区贡献1条内容
所有评论(0)