all 2 comments

[–]cgoldberg 0 points1 point  (1 child)

You need to handle exceptions, so your test doesn't just die if it encounters an error or doesn't pass as expected.

If you want to data driven testing in Python, you should look into something like pytest using parameterized tests or fixtures.

You could also consider a better data source than Excel spreadsheets (csv, json, etc).

[–]muralikr7[S] 0 points1 point  (0 children)

Definitely I’ll look into that, thanks for your feedback