执行多个黄瓜功能文件 [英] execute multiple cucumber feature files

查看:146
本文介绍了执行多个黄瓜功能文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我提交单个功能文件时,它可以完美运行。我想将具有多个功能文件的功能文件夹路径传递给runner脚本。任何人都可以帮忙执行多个功能文件吗?

When I submit a single feature file it works perfectly. I want to pass features folder path which has multiple feature files into runner script. Can anyone help to execute multiple feature files?

所有功能文件都有相同的步骤,但数据不同,文件名也不同。

All feature files have same steps but data is different and file name is different.

@RunWith(Cucumber.class)

@CucumberOptions(format = {"pretty"}, features =
"C:\\TESTER\\Execution\\uidata\\featurefiles\\",
        glue={"com.test.auto.stepdefs"},dryRun=false) 

public class CucumberTest { 

}

我感谢你帮助。

推荐答案

这适用于Java-Cucumber用户::
多个功能是
1.Smoketest 2. Logintest
然后你的Junit runner java文件看起来像

This is for Java-Cucumber users :: Multiple Features are 1.Smoketest 2. Logintest Then your Junit runner java file should look like

@RunWith(Cucumber.class)    
    @CucumberOptions 
    (features = "src/test/java/testStep/",#Path for the Feature files Folder.Given you have smoke.feature and login.feature files present in the Path#
    plugin ={"pretty","html:reports/test-report"},#Path for the Reports Html Folder#
    tags= {"@smoke,@login"})#Declaring multiple Feature names of files#

- 干杯

这篇关于执行多个黄瓜功能文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆