我是Java测试自动化的新手。当我运行测试时,我收到以下消息。怎么了?现在谢谢。
消息:org.openqa.selenium.remote.DesiredCapabilities chrome
信息:使用
new ChromeOptions()
比使用DesiredCapabilities.chrome()
更可取在端口33954上启动ChromeDriver 2.44.609538(b655c5a60b0b544917107a59d4153d4bf78e1b90(仅允许本地连接。
Java File
import org.junit.Test;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
public class TestCase {
@Test
public void doTestCase(){
System.setProperty("webdriver.chrome.driver","D:\Drivers\Chrome Driver\chromedriver\chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.addArguments("start-maximized");
ChromeDriver driver = new ChromeDriver(options);
driver.get("https://www.google.com/");
}
}
Maven File
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.alkan.testautomation</groupId>
<artifactId>JavaTestAutomaiton</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>2.44.0</version>
</dependency>
</dependencies>
</project>
您作为消息获得的信息是因为您可能使用了DesiredCabilities。因为,如果你使用ChromeOptions,你不应该得到信息。查看DesiredCapabilities.class包含的内容:
public static DesiredCapabilities chrome() {
LOG.info("Using `new ChromeOptions()` is preferred to `DesiredCapabilities.chrome()`");
return new DesiredCapabilities("chrome", "", Platform.ANY);
}
DesiredCapabilities类的使用受到Python、Ruby等的支持。虽然它也可以在Java中使用,但它在Java中的使用是不推荐的。
相反,我们可以使用ChromeOptions类。这是由Java、Python等支持的。
参考号:https://chromedriver.chromium.org/capabilities
您需要更改如下-
ChromeOptions cap = new ChromeOptions();
cap.setCapability(CapabilityType.UNEXPECTED_ALERT_BEHAVIOUR,
UnexpectedAlertBehaviour.IGNORE);
driver = new RemoteWebDriver(new URL("http://hub:4444/wd/hub"),cap);
它将修复该问题,并且在执行时不会遇到该日志