Skip to content

Instantly share code, notes, and snippets.

@jnicklas
Created November 14, 2012 12:40
Show Gist options
  • Star 37 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save jnicklas/4071870 to your computer and use it in GitHub Desktop.
Save jnicklas/4071870 to your computer and use it in GitHub Desktop.
Capybara.add_selector :record do
xpath { |record| XPath.css("#" + ActionController::RecordIdentifier.dom_id(record)) }
match { |record| record.is_a?(ActiveRecord::Base) }
end
post = Post.first
find(post).click_link("Hello")
within post do
fill_in("What's going on here", :with => "Holy shit this works??")
click_button("Yes")
end
@jnicklas
Copy link
Author

@gmile, it works with any ActiveRecord instance, not just Posts. That's the beauty of it. In fact it could be made to work with anything that works with dom_id, not just ActiveRecord, but I'm too lazy to figure out how.

@colszowka
Copy link

Awesome :)

@jipiboily
Copy link

🍻

@dcaliri
Copy link

dcaliri commented Nov 14, 2012

nice

@Hakon
Copy link

Hakon commented Nov 14, 2012

@JuarezLustosa
Copy link

\o/

@thiagofm
Copy link

nice

@sush
Copy link

sush commented Nov 14, 2012

Awesome ❤️

@pcreux
Copy link

pcreux commented Nov 15, 2012

😻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment