项目无法识别 cucumber-picocontainer 依赖项

Project doesn't recognize cucumber-picocontainer dependency

我目前正在使用 Cucumber、JUnit 和 Selenium 开发 java 测试框架。我已经从事过类似的项目,但我在这方面遇到了问题。

我正在尝试创建一个上下文 class,它是一个单例。我想使用 cucumber-picocontainer 在每个步骤定义 class 中访问这个 class。我在 pom.xml 中添加了依赖项,但每次我尝试执行测试时,都会出现异常:"NewLoginSteps doesn't have an empty constructor. If you need DI, put cucumber-picocontainer on the classpath"。我尝试手动导入 jars,但没有帮助。

这是我的配置示例:

TestContext.java :

public class TestContext {
    private static Map<String, String> siteLocations = new HashMap<String, String>();
    private static boolean initialized = false;
    private static boolean firstInitDone = false;
    private static WebDriver driver;
    private static boolean testsToRun = false;
    private static AutomatedTestMode modeAsEnum;

    @Before
    public void setUp(Scenario scenario) {
        initialize();
        Log.startTestCase(scenario.getName());
        afterAll();
    }
    ....
}

步骤定义 class :

public class NewLoginSteps extends NewSuperSteps {

    public NewLoginSteps(TestContext context){
        super(context);
    }


    @When("^I log in nova as \"([^\"]*)\" user with \"([^\"]*)\" \"([^\"]*)\"$")
    public void newLogin(String instance, String username, String password){
        Assert.assertEquals(true, false);

    }

    @Then("^The user is connected$")
    public void The_user_is_connected(){
        throw new PendingException();
    }

}

我的 superSepts class :

public class NewSuperSteps {
    protected TestContext context;
    public NewSuperSteps(TestContext context){
        this.context=context;
    }

}

你知道我做错了什么吗?我已经使用 picocontainer 来做同样的事情并且它正在工作。

将以下依赖项添加到您的 pom.xml

<dependency>   
    <groupId>org.picocontainer</groupId>  
    <artifactId>picocontainer</artifactId>
    <version>2.14.3</version>
</dependency>

不包括

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

除了cucumber-junit和cucumber-picocontainer。

那是我项目的问题。

我遇到了类似的问题。

问题出在信息杯的版本中。您需要在 pom.xml 中使用相同版本的所有 cucumber-*。这解决了我的问题。

添加以下依赖项对我有用,

    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>1.2.5</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-picocontainer</artifactId>
        <version>1.2.5</version>
        <scope>test</scope>
    </dependency>

对我来说,即使在 pom.xml 中提供相同版本的所有 cucumber-* 后,问题仍然存在。我下载了所有依赖 jar 并在依赖选项卡下的模块设置中添加。现在它工作正常。

info.cukes 神器现在移动到 io.cucumber。每个与黄瓜相关的依赖项都应该有相同的版本号。

<properties>
    <io.cucumber.version>4.7.2</io.cucumber.version>
</properties>
    <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>${io.cucumber.version}</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>${io.cucumber.version}</version>
        <scope>test</scope>
    </dependency>
    <!-- Using PicoContainer to share state between steps in a scenario -->
    <dependency>
        <groupId>io.cucumber</groupId>
        <artifactId>cucumber-picocontainer</artifactId>
        <version>${io.cucumber.version}</version>
        <scope>test</scope>
    </dependency>