Sha256: ef8e7eb7fa90db02b4cebfb7587108b826f8211871b782a87ef5b141c757bfe9
Contents?: true
Size: 853 Bytes
Versions: 2
Compression:
Stored size: 853 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| expect(@page.text_field_id).to include expected_text end When(/^I locate the text field by "(.*?)"$/) do |how| @how = how end Then(/^I should be able to type "(.*?)" into the field$/) do |value| @page.send "text_field_#{@how}=".to_sym, value end When(/^I retrieve a text field$/) do @element = @page.text_field_id_element end When(/^I search for the text field by "(.*?)" and "(.*?)"$/) do |param1, param2| @how = "#{param1}_#{param2}" 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
druid-ts-1.1.1 | features/step_definations/text_field_steps.rb |
druid-ts-1.1.0 | features/step_definations/text_field_steps.rb |