Created
October 19, 2011 19:17
-
-
Save richardlawrence/1299371 to your computer and use it in GitHub Desktop.
Convert a Capybara table to something you can diff with a Cucumber table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# change 'table' to a more specific selector when the page will have more than one table | |
find('table').all('tr').map { |row| row.all('th, td').map { |cell| cell.text.strip } } |
Thanks, @dbloete, I've updated the snippet to include strip.
But Why remove tableish ?
Because tablish isn't as flexible as the Capybara finders and like you see: It's easy to roll it yourself.
How does capybara handle elements inside a table cell/row? Is there a quick way to select a checkbox or a link based on cell data? For example, I want to look through the table data and once I find it in row X and there exists a checkbox, and I want to click on that checkbox. What's capybara's best way to handle this?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for providing this snippet. I had to call strip on cell.text otherwise it contained line breaks in some cases.