I have a table that and I would like to validate the data shown on the table using a cucumber Scenario Outline. I know you can use one to repeat a similar series of steps, but is it possible to use the data table to validate what is on say a 4x4 table? so if my example looked like ..
Examples:
| name | age | disabled | insured |
| Tim | 56 | N | N |
| Bob | 72 | Y | N |
| Lee | 52 | Y | Y |
| Mat | 34 | N | N |
And this was an exact copy of what is on the UI, I want this to go row by row and validate what is on the screen.