I have a feature file in Behat (below) where I define the table headings. I have been using getRowsHash() to get the table headings and it has been working fine.
| TableHeadings |
| FlagIcon |
| Flight |
| Stand |
| From |
But just recently while testing a page with 18 headings, it started failing. I could't get any answers. So thought of trying getHash() instead and it worked fine.
Is there a limitation with getRowsHash() beyond 15 rows or should I be using getRows() or getHash() instead.
Note: If I use getRowsHash(), I get an error that expected (15) is not equal to Actual (18). As I mentioned above I have expected (18 headings not 15)