Sha256: b98e6fdf75f5f248041a7001fbb7f07aff3779c46c536ac6b77399e00909b2bf

Contents?: true

Size: 1011 Bytes

Versions: 2

Compression:

Stored size: 1011 Bytes

Contents

When /^I type "([^\"]*)" into the text field$/ do |text|
  @page.text_field_id = text
end

Then /^the text field should contain "([^\"]*)"$/ do |expected_text|
  @page.text_field_id.should == expected_text
end

When /^I search for the text field by "([^\"]*)"$/ do |how|
  @how = how
end

When /^I search for the text field by "([^"]*)" and "([^"]*)"$/ do |param1, param2|
  @how = "#{param1}_#{param2}"
end

Then /^I should be able to type "([^\"]*)" into the field$/ do |value|
  @page.send "text_field_#{@how}=".to_sym, value
end

When /^I find a text field while the script is executing$/ do
  @text_field = @page.text_field_element(:id => 'text_field_id')
end

Then /^I should be able to type "([^\"]*)" into the field element$/ do |value|
  @text_field.value = value
end

Then /^I should see that the text field exists$/ do
  @page.text_field_id?.should == true
end

When /^I append "([^\"]*)" to the text field$/ do |text|
  @page.text_field_id_element.append text
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
meeane-page-object-0.1.10 features/step_definitions/text_field_steps.rb
meeane-page-object-0.1.8 features/step_definitions/text_field_steps.rb