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