Skip to content

Instantly share code, notes, and snippets.

@hone
Created September 30, 2009 06:12
Show Gist options
  • Select an option

  • Save hone/197858 to your computer and use it in GitHub Desktop.

Select an option

Save hone/197858 to your computer and use it in GitHub Desktop.
When /^I follow "([^\"]*)"$/ do |link|
if CUCUMBER_ENV == :enhanced
# hack to get follow link to work right in selenium.
begin
selenium.wait_for :wait_for => :text, :text => link
rescue Selenium::CommandError
selenium.wait_for_page(5)
end
end
click_link(link)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment