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.0.19 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.18 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.17 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.16 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.15 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.14 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.13 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.12 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.11 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.10 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.8 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.7 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.6 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.5 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.4 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.3 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.2 lib/calabash-android/steps/progress_steps.rb
calabash-android-0.0.1 lib/calabash-android/steps/progress_steps.rb