Sha256: 510c539ce17a396fe9ad64f926e7308f4b6dc69df0da2a98e57dcfd139faf202
Contents?: true
Size: 853 Bytes
Versions: 40
Compression:
Stored size: 853 Bytes
Contents
Then /^I see the text "([^\"]*)"$/ do |text| performAction('assert_text',text, true) end Then /^I see "([^\"]*)"$/ do |text| performAction('assert_text', text, true) end Then /^I should see "([^\"]*)"$/ do |text| performAction('assert_text', text, true) end Then /^I should see text containing "([^\"]*)"$/ do |text| performAction('assert_text', text, true) end Then /^I should not see "([^\"]*)"$/ do |text| performAction('assert_text', text, false) #second param indicated that the text should _not_ be found end Then /^I don't see the text "([^\"]*)"$/ do |text| performAction('assert_text', text, false) #second param indicated that the text should _not_ be found end Then /^I don't see "([^\"]*)"$/ do |text| performAction('assert_text', text, false) #second param indicated that the text should _not_ be found end
Version data entries
40 entries across 40 versions & 1 rubygems