@步骤未报

问题描述 投票:0回答:0

我是 Allure 的新手, 我和剧作家 + jave 一起工作, 我正在尝试向报告中添加步骤,但是在诱惑力测试报告中似乎没有报告@Step Anotation,

我添加到pom:

<plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.22.2</version>
                    <configuration>
                        <argLine>
                            -javaagent:"${settings.localRepository}\org\aspectj\aspectjweaver\${aspectj.version}\aspectjweaver-${aspectj.version}.jar"
                        </argLine>
                        <suiteXmlFiles>
                            <suiteXmlFile>src/test/resources/AllTests.tng.xml</suiteXmlFile>
                        </suiteXmlFiles>
                    </configuration>
                    <dependencies>
                        <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjweaver</artifactId>
                        <version>${aspectj.version}</version>
                        </dependency>
                    </dependencies>
                </plugin>

@Test/@Attachment 效果很好,只有@Step。

谢谢!

junit5 allure playwright-java
© www.soinside.com 2019 - 2024. All rights reserved.