Skip to content

Instantly share code, notes, and snippets.

@shinzui
Forked from samullen/finders.rb
Created December 26, 2011 19:28
Show Gist options
  • Save shinzui/1521976 to your computer and use it in GitHub Desktop.
Save shinzui/1521976 to your computer and use it in GitHub Desktop.
User defined finders for Capybara
Capybara.add_selector(:link) do
xpath {|rel| ".//a[contains(@rel, '#{rel}')]"}
end
<a href="javascript:void(0);" rel="toggle-chart nofollow">Toggle chart</a>
When /^I toggle the charts$/ do
page.find(:link, "toggle-chart").click
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment