使用Cucumber Java设置IntelliJ时出错

时间:2018-07-09 12:57:14

标签: intellij-14

enter image description here

我正在使用黄瓜骨架项目的基本框架。 这是我的pom.xml文件

<?xml version="1.0" encoding="UTF-8"?>

http://maven.apache.org/xsd/maven-4.0.0.xsd“>     4.0.0

<groupId>MyCucumber</groupId>
<artifactId>MyCucumber</artifactId>
<version>1.0-SNAPSHOT</version>

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

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>3.11.0</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>1.2.5</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>1.2.5</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.6.1</version>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.21.0</version>
            <configuration>
                <includes>
                    <include>MyRunner.java</include>
                </includes>
            </configuration>
        </plugin>
    </plugins>
</build>

<reporting>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
            <version>2.21.0</version>
        </plugin>
    </plugins>
</reporting>

单击运行test.feature,出现以下错误: 7/9/2018 下午10:41所有文件都是最新的

10:41 PM运行``功能:测试''时出错:com.intellij.execution.testframework.sm.SMTestRunnerConnectionUtil.createAndAttachConsole(Ljava / lang / String; Lcom / intellij / execution / process / ProcessHandler; Lcom / intellij / execution / testframework / TestConsoleProperties; Lcom / intellij / execution / runners / ExecutionEnvironment;)Lcom / intellij / execution / testframework / ui / BaseTestsOutputConsoleView;

我已经按照本文的设置步骤进行操作,但仍然收到上述错误。我不确定还有什么地方不对。 http://www.edgewords.com/2018/05/31/intellij-with-cucumber-and-selenium-webdriver-java/

0 个答案:

没有答案