Sha256: 8e5addc72d21aabf66973d9509284264379c23445cc6ed1be03208813be6e6f1
Contents?: true
Size: 643 Bytes
Versions: 91
Compression:
Stored size: 643 Bytes
Contents
Then /^I see the text "([^\"]*)"$/ do |text| wait_for_text(text, timeout: 10) end Then /^I see "([^\"]*)"$/ do |text| wait_for_text(text, timeout: 10) end Then /^I should see "([^\"]*)"$/ do |text| wait_for_text(text, timeout: 10) end Then /^I should see text containing "([^\"]*)"$/ do |text| wait_for_text(text, timeout: 10) end Then /^I should not see "([^\"]*)"$/ do |text| wait_for_text_to_disappear(text, timeout: 10) end Then /^I don't see the text "([^\"]*)"$/ do |text| wait_for_text_to_disappear(text, timeout: 10) end Then /^I don't see "([^\"]*)"$/ do |text| wait_for_text_to_disappear(text, timeout: 10) end
Version data entries
91 entries across 91 versions & 1 rubygems