Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 509 Bytes

File metadata and controls

10 lines (6 loc) · 509 Bytes

CSV and table recipe

Loads CSV file and checks HTML table to have the text content matching the loaded CSV records

Uses neat-csv to parse the loaded CSV text into records.

Tests

  • spec.js loads the CSV file using cy.readFile, parses the text into list of objects, then goes through the rows of the table element comparing cell text content to the records.

Table test