假设我有一个像
这样的测试用例*Scenario: Facebook login test
GIVEN I am a Facebook user
WHEN I enter my user name & password
THEN login should be successful*
我怎样才能从与#34相对应的步骤定义方法中获取方案名称;我是Facebook用户"或者"我输入我的用户名&密码"或者"登录应该成功" ?
步骤定义方法是 -
@Given("^I am a Facebook user$")
public void method1() {
//some coding
//I want to get the scenario name here
}
@When("^I enter my user name & password$")
public void method2() {
//some coding
//I want to get the scenario name here
}
@Then("^login should be successful$")
public void method3() {
//some coding
//I want to get the scenario name here
}
答案 0 :(得分:1)
您可以使用@Before
挂钩获取当前正在执行的Scenario
对象。
@Before
public void beforeHook(Scenario scenario) {
this.sce = scenario
System......(scenario.getName())
System......(scenario.getId())
}
您可以在步骤定义中访问存储的方案对象。
答案 1 :(得分:1)
没有@Bappa它可以,虽然你的stepdefinition类是单例并且你的测试是并行的,但是通过使用用于存储的线程安全静态哈希映射变量来增强它,可以通过以下方法攻击它:
public class StepDefinitions{
private static HashMap<Integer,String> scenarios;
public StepDefinitions(){ //or even inside of your singleton's getInstance();
if(scenarios == null)
scenarios = new HashMap<Integer,String();
}
@Before
public void beforeHook(Scenario scenario) {
addScenario(scenario.getName());
}
@When("your step definition")
public void stepDefinition1(){
String scenario = getScenario(); //problem-o-solved here...
}
private void addScenario(String scenario){
Thread currentThread = Thread.currentThread();
int threadID = currentThread.hashCode();
scenarios.put(threadID,scenario);
}
private String getScenario(){
Thread currentThread = Thread.currentThread();
int threadID = currentThread.hashCode();
return scenarios.get(threadID);
}
答案 2 :(得分:0)
在步骤定义中,您可以使用CucumberHelper.scenario.getName()
。
基于此API,您可以使用getID
,getSourceTagNames
,getStatus
和getClass
方法。