Sha256: 56f86fcd545fa82b4f9737b3d7079b5e1ca1034b4395c9b3fa194373b15140ee

Contents?: true

Size: 1.08 KB

Versions: 38

Compression:

Stored size: 1.08 KB

Contents

Then /^I wait for progress$/ do
  performAction('wait_for_no_progress_bars') 
end

Then /^I wait$/ do
  performAction('wait', 2)
end

Then /^I wait for dialog to close$/ do
  performAction('wait_for_dialog_to_close')
end


Then /^I wait for (\d+) seconds$/ do |seconds|
  performAction('wait', seconds)
end

Then /^I wait for 1 second$/ do
  performAction('wait', 1)
end

Then /^I wait for a second$/ do
  performAction('wait', 1)
end


Then /^I wait for "([^\"]*)" to appear$/ do |text|
  performAction('wait_for_text', text)
end

Then /^I wait to see "([^\"]*)"$/ do |text|
  performAction('wait_for_text', text)
end

Then /^I wait for the "([^\"]*)" button to appear$/ do |text|
  performAction('wait_for_button', text)
end

Then /^I wait for the view with id "([^\"]*)" to appear$/ do |text|
  performAction('wait_for_view_by_id', text)
end

Then /^I wait for the "([^\"]*)" screen to appear$/ do |text|
    performAction('wait_for_screen', text)
end

Then /^I wait upto (\d+) seconds for the "([^\"]*)" screen to appear$/ do |timeout, text|
    performAction('wait_for_screen', text, timeout)
end

Version data entries

38 entries across 38 versions & 1 rubygems

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