CapybaraTable
Some neat Capybara selectors and matchers for working with HTML tables.
Installation
Add this line to your application's Gemfile:
gem 'capybara_table'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capybara_table
If you're using RSpec, require the matchers:
require "capybara_table/rspec"
Otherwise
Usage
If you have a table like this:
<table>
<caption>People</caption>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
</tr>
<tr>
<td>Jonas</td>
<td>Nicklas</td>
<td>31</td>
</tr>
<tr>
<td colspan="2">John</td>
<td>22</td>
</tr>
</table>
Then you can do this
find(:table, "People")
find(:table_row, {"First Name" => "Jonas", "Last Name" => "Nicklas"}, {})
expect(find(:table, "People")).to have_table_row("First Name" => "Jonas", "Last Name" => "Nicklas")
within :table, "People" do
assert_selector(:table_row, {"First Name" => "Jonas", "Last Name" => "Nicklas"}, {})
end
License
The gem is available as open source under the terms of the MIT License.