I have to run a feature file with multiple cases in a single login. For ex:
Scenario: check total When user logs in with "username" and "password" And user checks for "" on "" And user checks for "" on ""
Examples:
| username | password | amount1 | date1 |amount2|date2|... some 20 entries..
I need to check for amount on date in a single login,while in my scenario it is login each time for every entry in data table.How do I achieve it?
Instead I want something like this:
When user logs in with "username" and "password"
Examples:
|username|password| ..use it only once
And user checks for "amount" on "date"
Examples:
|amount|date|....loop over 20 times