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

Version Path
calabash-android-0.5.5.pre3 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.5.pre2 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.5.pre1 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.4 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.3 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.2 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.2.pre1 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.1 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.0 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.0.pre2 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.5.0.pre1 lib/calabash-android/steps/assert_steps.rb