Sha256: abd34a9f6ba93700dbb7e5807997a25ac82e0b8a6c8c52a2edbf9b537a8e2370
Contents?: true
Size: 943 Bytes
Versions: 16
Compression:
Stored size: 943 Bytes
Contents
When /^I select the link labeled "([^\"]*)"$/ do |text| @page.google_search_id end When /^I search for the link by "([^\"]*)"$/ do |how| @how = how end Then /^I should be able to select the link$/ do @page.send "google_search_#{@how}".to_sym end When /^I select a link labeled "([^"]*)" and index "([^"]*)"$/ do |label, index| @page.send "#{label.downcase}#{index}".to_sym end When /^I select a link while the script is executing$/ do link = @page.link_element(:id => 'link_id') link.click end Then(/^I should see that the link exists$/) do @page.link_id?.should == true end When(/^I get the href for the link$/) do @href = @page.google_search_id_element.href end Then(/^I should know it was "(.*?)"$/) do |href| @href.should include href end When(/^I get the link using the href success$/) do @link = @page.link_element(:href => /succ.*html/) end Then(/^I should be able to click the link$/) do @link.click end
Version data entries
16 entries across 16 versions & 4 rubygems