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

Version Path
calabash-android-0.2.11 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.10 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.9 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.8 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.7 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.6 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.5 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.4 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.3 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.2 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.1 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre10 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre9 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre8 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre7 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre6 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre5 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre4 lib/calabash-android/steps/assert_steps.rb
calabash-android-0.2.0.pre3 lib/calabash-android/steps/assert_steps.rb