-2

我正在尝试在进行 Selenium BDD 自动化时使用 Serenity JAR。

谁能建议我应该使用哪些注释,以便在完全执行后生成执行报告。

我正在使用以下组合进行自动化

Selenium+WebDriver+Maven+JBehave+Serenity。

等待回复。谢谢。

4

1 回答 1

0

您需要将此插件添加到您的 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>
于 2016-01-14T13:20:17.200 回答