宁静 BDD 自动化
Serenity BDD Automation
我在执行 Selenium BDD 自动化时尝试使用 Serenity JAR。
任何人都可以建议我应该使用哪些注释以便在完成执行后生成执行报告。
我正在使用以下组合进行自动化
Selenium+WebDriver+Maven+JBehave+Serenity.
正在等待 response.Thanks。
您需要将此插件添加到您的 POM
<plugin>
<groupId>net.serenity-bdd.maven.plugins</groupId>
<artifactId>serenity-maven-plugin</artifactId>
<version>1.1.2</version>
<executions>
<execution>
<id>serenity-reports</id>
<phase>post-integration-test</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
我在执行 Selenium BDD 自动化时尝试使用 Serenity JAR。
任何人都可以建议我应该使用哪些注释以便在完成执行后生成执行报告。
我正在使用以下组合进行自动化
Selenium+WebDriver+Maven+JBehave+Serenity.
正在等待 response.Thanks。
您需要将此插件添加到您的 POM
<plugin>
<groupId>net.serenity-bdd.maven.plugins</groupId>
<artifactId>serenity-maven-plugin</artifactId>
<version>1.1.2</version>
<executions>
<execution>
<id>serenity-reports</id>
<phase>post-integration-test</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>