Sha256: 1726849ce1f62c84918c3ab53ba25a49943205bacce1083014166b8ee262d959

Contents?: true

Size: 585 Bytes

Versions: 77

Compression:

Stored size: 585 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

Version data entries

77 entries across 77 versions & 1 rubygems

Version Path
calabash-android-0.0.18 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.17 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.16 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.15 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.14 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.13 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.12 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.11 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.10 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.8 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.7 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.6 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.5 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.4 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.3 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.2 lib/calabash-android/steps/enter_text_steps.rb
calabash-android-0.0.1 lib/calabash-android/steps/enter_text_steps.rb