gpt4 book ai didi

java - Maven:验证目标不会在自动化测试中打开浏览器

转载 作者:行者123 更新时间:2023-11-30 01:56:59 24 4
gpt4 key购买 nike

我正在使用 eclipse 创建运行配置 mvn verify,但它不会打开浏览器。我包括 maven-failsafe-plugin 和 maven-compiler-plugin

> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-failsafe-plugin</artifactId>
> <version>3.0.0-M3</version>
> <executions>
> <execution>
> <goals>
> <goal>integration-test</goal>
> <goal>verify</goal>
> </goals>
> </execution>
> </executions>
> </plugin>

这有什么问题吗?我什至运行 mvn install 但没有打开浏览器。

最佳答案

如果测试遵循命名约定,则 Maven failsafe-/surefire-plugin 将自动选取测试,即

A list of elements specifying the test filter (by pattern) of tests which should be included in testing. If it is not specified and the test parameter is unspecified as well, the default includes is

<includes>
<include>**/IT*.java</include>
<include>**/*IT.java</include>
<include>**/*ITCase.java</include>
</includes>

参见https://maven.apache.org/surefire/maven-failsafe-plugin/integration-test-mojo.html .

如果您可以在 eclipse 中使用 TestNG 运行测试,那么我认为您的测试名称不“正确”。

关于java - Maven:验证目标不会在自动化测试中打开浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54088391/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com