capybara_table icon indicating copy to clipboard operation
capybara_table copied to clipboard

Capybara selectors and matchers for working with HTML tables

Results 3 capybara_table issues
Sort by recently updated
recently updated
newest added

Im following the documentation and wrote this test: ``` ['Name', 'Date of Birth', 'Phone', 'Address', 'Credit Card', 'Email'].each do |file_column| expect(find(:table, 'Map CSV fields to Contacts')).to have_table_row('Column' => file_column) end...

Wanted to run some ideas I had by you, as I found this gem while searching for a nicer way of interacting with tables in Capybara. To lead with, if...

Where the ``s are in a column, not the first row.