我可以使用jBehave获得以下步骤方法;
@When("I select action <actionText> on <panelTitle>")
@Alias("I select action $actionText on $panelTitle")
public void myMethod(@Named("actionText") String actionText, @Named("panelTitle") String panelTitle) {
// My code
}
如您所见,步骤文本是相同的。只有一种情况是,价值是通过 参数注入和其他通过参数化方案
答案 0 :(得分:0)
我在链接中看到了类似的实现: http://jbehave.org/reference/stable/parametrised-scenarios.html
所以,你可以使用这种方法。