Steps in feature that are not working as pre-defined steps: (These are the one's I have located so far)
Does not automatically provide the step definitions as the other commands do:
10 scenarios (1 undefined, 9 passed)
72 steps (5 skipped, 1 undefined, 66 passed)
0m19.841s
You can implement step definitions for undefined steps with these snippets:
When I click on element with the text "/html/body/div[2]/div/div[4]/div/div[2]"
When(/^I click on element with the text "([^"]*)"$/) do |arg1|
pending # Write code here that turns the phrase above into concrete actions
When I choose radio button "//section[@id='account-selection']/div[2]/input[@id='auth-method_']"
When(/^I choose radio button "([^"]*)"$/) do |arg1|
pending # Write code here that turns the phrase above into concrete actions
end
When I check "toc_nametoc"
When(/^I check "([^"]*)"$/) do |arg1|
pending # Write code here that turns the phrase above into concrete actions
end