Sha256: d3d644c6201fa9cff7daa8ff7e53134a34346c2a15cd83344de7b8a7f385c31d

Contents?: true

Size: 838 Bytes

Versions: 80

Compression:

Stored size: 838 Bytes

Contents

Then /^I enter "([^\"]*)" as "([^\"]*)"$/ do |text, target|
  performAction('enter_text_into_named_field', text, target)
end

Then /^I enter "([^\"]*)" into input field number (\d+)$/ do |text, number|
  performAction('enter_text_into_numbered_field',text, number)
end

Then /^I enter "([^\"]*)" into "([^\"]*)"$/ do |text, name|
  performAction('enter_text_into_named_field',text, name)
end

Then /^I clear "([^\"]*)"$/ do |name|
  performAction('clear_named_field',name)
end

Then /^I clear input field number (\d+)$/ do |number|
  performAction('clear_numbered_field',number)
end

Then /^I clear input field with id "([^\"]*)"$/ do |view_id|
  performAction('clear_id_field', view_id)
end

Then /^I enter text "([^\"]*)" into field with id "([^\"]*)"$/ do |text, view_id|
  performAction('enter_text_into_id_field', text, view_id)
end

Version data entries

80 entries across 80 versions & 2 rubygems

Version Path
calabash-android-0.4.20.1 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.22.pre4 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.22.pre3 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.22.pre1 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.21 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.20 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.19 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.19.pre4 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.19.pre3 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.19.pre2 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.19.pre1 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.18 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.16 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.15.pre2 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.15.pre1 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.14 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.13 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.12 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.11 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.4.10.pre5 lib/calabash-android/steps/enter_text_steps.rb