gpt4 book ai didi

junit - 无法在 IntelliJ 中解析符号 "cucumber"

转载 作者:行者123 更新时间:2023-12-02 00:49:39 24 4
gpt4 key购买 nike

即使在我的 POM 中添加了“cucumber-java”之后,我仍然看到“无法解析 cucumber”错误

我也试过在POM中添加“junt”,但问题没有解决

最佳答案

花了很多时间后,我发现了 POM 中依赖项的问题。我们必须将“cucumber-java”和“cucumber-junit”都添加到您的 Maven 项目中的 POM.xml

    <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>

关于junit - 无法在 IntelliJ 中解析符号 "cucumber",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40955733/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com