假設我有一個測試用例像黃瓜的場景輪廓得到場景的名字 -如何使用Java
*Scenario: Facebook login test
GIVEN I am a Facebook user
WHEN I enter my user name & password
THEN login should be successful*
我怎麼會從相應的步驟定義方法得到的方案名稱「我是一個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
}
步驟定義類是一個singletone類,5-6個獨立的功能文件並行使用它。將場景名稱存儲在變量中對我的場景不起作用。 – Bappa