https://www.sitepoint.com/bdd-javascript-cucumber-gherkin/
https://vinodmuralidharan.medium.com/cucumber-js-data-table-guide-a2447b74c86e
.feature file
.step file
Get the object form of the test data
.feature file
.step file
Use table.raw();
, and needs to access each row using index instead of using let element of elements
. And the first index of the loop needs to be 1 instead of 0, because needs to exclude the column name, which is category
.
typescript
webdriverio
bdd
cucumber