centos7系统需要提前安装jdk,调用chrome以前需要安装chrome。
1. 安装chrome下载安装包:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
由于chrome还依赖其他的组件,所以可以采用和依赖组件一起安装的方式。执行下面的命令:
yum localinstall google-chrome-stable_current_x86_64.rpm
安装完成后,执行命令,查看版本:
# google-chrome --version
Google Chrome 100.0.4896.127
或者
# /usr/bin/google-chrome --version
Google Chrome 100.0.4896.127
可以看到安装的版本。
2. 下载驱动包下载地址:
https://registry.npmmirror.com/binary.html?path=chromedriver/100.0.4896.60/
这里选择和chrome版本一致的驱动版本。
下载chromedriver_linux64.zip。
3. 代码配置pom.xml依赖配置
org.seleniumhq.selenium
selenium-java
3.141.59
代码参数配置
// 设置 chromedirver 的存放位置
System.getProperties().setProperty("webdriver.chrome.driver", "/home/chrome/lib/chromedriver");
// 设置浏览器参数
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.addArguments("--no-sandbox");//禁用沙箱
chromeOptions.addArguments("--disable-dev-shm-usage");//禁用开发者shm
chromeOptions.addArguments("--headless"); //无头浏览器,这样不会打开浏览器窗口
// chromeOptions.setBinary("/usr/bin/google-chrome");
webDriver = new ChromeDriver(chromeOptions);
String uri = "http://www.baidu.com";
webDriver.get(uri);
4. 执行测试需要特别说明的是: System.getProperties().setProperty("webdriver.chrome.driver", "/home/chrome/lib/chromedriver"),用于设置正确的驱动文件位置。
chromeOptions.setBinary("/usr/bin/google-chrome"); 设置google程序路径,如果是默认路径安装,则不需要设置。
通过上述的配置和准备之后,打包程序,上传到linux,进行执行即可。
java -jar demo.jar
输出日志信息:
Starting ChromeDriver 100.0.4896.60 (6a5d10861ce8de5fce22564658033b43cb7de047-refs/branch-heads/4896@{#875}) on port 2505
Only local connections are allowed.
Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
ChromeDriver was started successfully.
由于这里是常规步骤,所以就不做过多说明了。
5. 遇到过的问题Caused by: org.openqa.selenium.WebDriverException: unknown error: Chrome failed to start: exited abnormally.
(unknown error: DevToolsActivePort file doesn't exist)
(The process started from chrome location /home/chrome//lib/chromedriver is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: 'node85', ip: '192.168.xx.xx', os.name: 'Linux', os.arch: 'amd64', os.version: '3.10.0-1160.25.1.el7.x86_64', java.version: '1.8.0_201'
Driver info: driver.version: ChromeDriver
remote stacktrace: #0 0x5575b7814ad3
#1 0x5575b7574568
#2 0x5575b7597b37
#3 0x5575b759323a
主要需要注意的是chrome版本和驱动版本保持一致,ChromeOptions参数设置正确和完整,基本上就没什么问题了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)