コード例 #1
0
 @Then("I should see \"$text\"")
 public void iShouldSeeTheFollowingText(String text) {
   home.textIsVisible(text);
 }
コード例 #2
0
 @Given("I open the web application")
 public void openWebApplication() {
   home = pageFactory.home();
   home.open();
 }