我在同一个功能文件中有两个不同的场景,对于这2个场景,我有单独的步骤定义文件但是当我运行测试运行器类时,我无法将代码链接到功能文件
第一个测试跑步者类: -
@RunWith(Cucumber.class)
@CucumberOptions(glue = {"step_def\\Loginstepdef"}, features = "resources",tags={"@SmokeTest"})
public class Test {
}
第二次试运行班: -
@RunWith(Cucumber.class)
@CucumberOptions(glue = {"C:\\codes\\LOGIN-Scenarios\\bin\\step_def\\Loginstepdef2.class"}, features = "resources",tags={"@P1_TestCase"})
public class Test2 {
}