I wrote Lists (Name, Item, etc.) for my Green Mountain Outpost Applikation. I want the applikation to run automaticaly the testcase with 1 Persone and Item at the time. So that the app. runs 1 Person from list throug, than the second test with another.
Asked
Active
Viewed 77 times
2 Answers
0
[ ] int x = 1
[-] for each Name in customers
[ ] print(Name)
[ ] // Name = customers[x]
[ ] Artikel = items[x]
[ ] CardN = cardnumber[x]
[ ] Expi = expirationdate[x]
[ ] print(Artikel)
[ ] print(CardN)
[ ] print(Expi)
[ ] print("----------------------")
[ ] Bestellung (Name, Artikel, CardN, Expi)
[ ]
[ ] x++

EllieFox
- 1
- 1
- 2
0
You can mention the data in Excel and make the test case as data driven.
Each row will be having one data combination.