如何使用@tags从黄瓜框架中的testrunner类文件运行多个标签?

新手上路,请多包涵
@RunWith(Cucumber.class)
@CucumberOptions( plugin = {"pretty","html:target/html/automation"},
                features = {"resource/***.feature"},
                glue={},
                tags={"@login","@Products"}
        )

这是我的功能文件

@登录

功能:登录到应用程序

场景:这是验证应用程序是否已成功登录给定导航到 Panasonic 应用程序然后验证应用程序的标题然后注销应用程序

@产品

功能:登录到应用程序

背景:用户应该导航到应用程序的主页

给定用户使用有效凭据登录主页

当点击主页上的目录链接时

场景:验证是否可以在产品页面创建十个以上的产品

并检查目录的子菜单是否显示在标题中

并检查我的产品目录表

原文由 tsr_qa 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 571
2 个回答

这是一个示例黄瓜 Junit 运行器模板:

 @RunWith(Cucumber.class)
@CucumberOptions(features = { "classpath:features/*.feature" }, glue = "packagename(s) or class name(s) containing the step definitions", plugin = {
        "pretty:target/prettyReport.txt", "html:target/cucumber", "json:target/cucumber.json", "rerun:target/rerun.txt",
        "junit:target/junit-report.xml", "testng:target/testng-output.xml" }, monochrome = true, tags = {"~@Ignore"})
public class FeatureRunnerTest {

}

希望这可以帮助!!

编辑:“〜”符号..用于否定..运行所有功能,除了标有忽略标签的功能..另一方面,您可以在标签属性逗号分隔的标签列表中指定标签列表以仅运行那些测试

原文由 Mrunal Gosar 发布,翻译遵循 CC BY-SA 3.0 许可协议

对于多个标签,Cucumber 使用逻辑 AND 和逻辑 OR。例如,以下对我来说效果很好。

 @RunWith(Cucumber.class)
@CucumberOptions(plugin = {"pretty", "html:target/cucumber-report.html"},
        features= "Features",
        glue= {"com.cucumber.stepdefinition"},
        tags= "@RegressionTest or @SmokeTest"
        )
public class TestRunner {
}

原文由 Rajesh Saini 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题