Testing started at 3:06 PM ...
Undefined step: When I go to the Geb home page
Undefined step: Then the first heading has the value |'What is it?|'
Undefined step: When I click the cross browser link
Undefined step: Then the first heading has the value |'Cross Browser Automation|'
1 Scenarios (1 undefined)
4 Steps (4 undefined)
0m0.000s
You can implement missing steps with the snippets below:
When(~/^I go to the Geb home page$/) { ->
// Write code here that turns the phrase above into concrete actions
throw new PendingException()
}
Then(~/^the first heading has the value 'What is it\?'$/) { ->
// Write code here that turns the phrase above into concrete actions
throw new PendingException()
}
When(~/^I click the cross browser link$/) { ->
// Write code here that turns the phrase above into concrete actions
throw new PendingException()
}
Then(~/^the first heading has the value 'Cross Browser Automation'$/) { ->
// Write code here that turns the phrase above into concrete actions
throw new PendingException()
}
Process finished with exit code 0