使用场景大纲时,黄瓜报告重复

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

使用“场景大纲”时,报告会生成两次场景,一次没有颜色,另一种颜色(如图所示)。

仅在使用场景大纲时才会发生这种情况,而不是在使用场景时。

这是我的pom.xml'http://maven.apache.org/xsd/maven-4.0.0.xsd“> 4.0.0 GroupMaven ArtifactMaven 0.0.1-SNAPSHOT pom ProjectMaven http://maven.apache.org

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19.1</version>
            <executions>
                <execution>
                    <configuration>
                        <includes>
                            <include>**/*Test.java</include>
                        </includes>
                    </configuration>
                    <goals>
                        <goal>test</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>1.2.4</version>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>1.2.4</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.53.1</version>
    </dependency>
    <dependency>
        <groupId>com.opencsv</groupId>
        <artifactId>opencsv</artifactId>
        <version>3.8</version>
    </dependency>
</dependencies>

'

这是My Cucumber Runner课程

'

@RunWith(Cucumber.class)@CucumberOptions(format = {“html:cucumber-html-reports / first”,“json:cucumber-html-reports / cucumber.json”},features = {“test / features / FirstFeature。 feature“})public class CucumberCukesTest {}'

我使用单色,严格,干燥等选项,什么都行不通。而且我使用插件而不是格式。

Cucumber report for scenario using Scenario Outline keyword

maven jvm cucumber cucumber-jvm
1个回答
0
投票

第一个是您的场景大纲的一般细节,即您在特征文件中编写的内容。查看第6步和第7步。

第二个和其他一个取决于示例的数量是具有用户ID和密码的实际值替换的细节的场景。注意在相同的步骤中没有<>。

© www.soinside.com 2019 - 2024. All rights reserved.