我的POM目前看起来像,
<groupId>net.masterthought</groupId>
<artifactId>maven-cucumber-reporting</artifactId>
<version>2.8.0</version>
<executions>
<execution>
<id>execution</id>
<phase>verify</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<projectName>ExecuteAutomation</projectName>
<outputDirectory>${project.build.directory}/cucumber-report-html</outputDirectory>
<cucumberOutput>${project.build.directory}/cucumber.json</cucumberOutput>
</configuration>
</execution>
</executions>
</plugin>
这将生成一个报告,但仅使用最后一个功能。我有多个跑步者,所以我试图弄清楚:
一个。如何将多个 JSON 合并到一个报表中,或者
B.如何在每次测试完成时追加到一个 JSON 文件?
这些中的任何一个似乎都是一个可行的解决方案,尽管我更喜欢A,因为看起来我在我的pom中只缺少一行.xml这样做,因为我目前已经在生成多个JSON文件
慕的地10843
德玛西亚99
相关分类