I have a part of feature as
And I should see "Thank you for your interest. We will soon send an email with activation instructions." within "span class="notificationText""
and
an auto generated step
Then /^I should see "([^"]*)" within "([^"]*)"notificationText"([^"]*)"$/ do |arg1, arg2, arg3|
end
I am unable to interpret it. I am trying to fit the following test in it(from http://www.cowboycoded.com/2011/01/05/better-web-steps-for-cucumber-with-capybara/), but unable to understand what arguments stand for what.
with_scope(select,:css_id) do
page.should have_selector("h1",:text=>text)
end