运行黄瓜代码时出现io.cucumber.junit.UndefinedStepException

时间:2020-02-14 19:13:11

标签: junit cucumber

我已经使用Cucumber开发了一个UI自动化项目。当我尝试使用黄瓜和JUnit运行器运行测试时,我收到:io.cucumber.junit.UndefinedStepException:步骤“用户在Goibibo应用程序登录页面上”是未定义的。您可以使用以下tne片段实现它:

项目结构如下:

enter image description here

TestRunner.java代码如下:

enter image description here

POM.xml依赖项-

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.20</version>
                <configuration>
                <testSourceDirectory>src/test/java</testSourceDirectory> 
                    <includes>
                        <include>**/*TestRunner.java</include>
                    </includes>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

<dependencies>
<dependency>
  <groupId>org.apache.maven.surefire</groupId>
  <artifactId>surefire-junit47</artifactId>
  <version>2.22.0</version>
</dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium.</groupId>
        <artifactId>selenium-java</artifactId>
        <version>3.141.59</version>
    </dependency>
    <dependency>
        <groupId>junit.</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>5.2.0</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>5.2.0</version>
    </dependency>
    <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-core</artifactId>
        <version>5.2.0</version>
    </dependency>
        <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-jvm</artifactId>
        <version>5.2.0</version>
        <type>pom</type>
    </dependency>       
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.14.3</version>
        <scope>test</scope>
    </dependency>   

</dependencies>

0 个答案:

没有答案