Sha256: c42f2884499375d6e2c26605a5ccddd7d608e247abf234f8ff8202b8eabe4424

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

When /^I select "([^\"]*)" from the select list$/ do |text|
  @page.sel_list_id = text
end

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

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

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

Then /^the value for the selected item should be "([^\"]*)"$/ do |value|
  result = @page.send "sel_list_#{@how}".to_sym
  result.should == value
end

When /^I find a select list while the script is executing$/ do
  @select_list = @page.select_list_element(:id => 'sel_list_id')
end

Then /^I should be able to select "([^\"]*)" from the list$/ do |value|
  @select_list.select(value)
end

Then /^I should see that the select list exists$/ do
  @page.sel_list_id?.should == true
end

Then /^the selected option should be "([^\"]*)"$/ do |text|
  @page.select_list_element(:id => 'sel_list_id').selected_options[0].should == text
end

Then /^the select list should include "([^\"]*)"$/ do |text|
  @page.sel_list_id_element.should include text
end

Then /^the select list should know that "([^\"]*)" is selected$/ do |text|
  @page.sel_list_id_element.selected?(text).should be_true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.6.2 features/step_definitions/select_list_steps.rb
page-object-0.6.1 features/step_definitions/select_list_steps.rb