在Cucumber JUnit 4中为CucumberOptions动态更换胶水

时间:2015-03-16 06:13:02

标签: java junit junit4 cucumber-jvm gherkin

我想知道是否有任何方法可以在步骤中添加新的胶水。我有一步应根据结果添加新包,所以我不能将我的选项作为CucumberOptions。

import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@CucumberOptions(
    features = {"src/featureFiles/Employee_WeeklySchedule.feature"},
    glue = { "magictester.core.glues" }
    plugin = {"html:target/results" },
    tags = {"@Runme"}
)

怎么办?如何在测试开始后添加/删除glues到cucumberOptions?

0 个答案:

没有答案