I can see the text in the browser.
characters should be "R", "P", or "B".
But when I write step cucumber step
Then I should see "characters should be \"R\", \"P\", or \"B\"."
He says his
Undefined step: "I should see "characters should be \"R\", \"P\", or \"B\"."" (Cucumber::Undefined)
and says to determine the step as
Then /^I should see "([^"]*)"R\\"([^"]*)"P\\"([^"]*)"B\\"([^"]*)"$/ do |arg1, arg2, arg3, arg4|
pending
end
Why does the cucumber not recognize this step?
Or is it the problem of escaping a quote inside a quote?
thank
source
share