Data driven testing is a method of software testing where the test data is stored in a table. Rather than writing the same test over and over again using different inputs, in many cases, it's much more efficient to just enter the test data into a table and run the tests on that data. An example is login testing. In a scenario where we want to test 1000+ credentials, instead of writing an individual test case for each account, it makes more sense to just enter all of the credentials into a spreadsheet and execute tests on the spreadsheet data.
We've implemented some data driven tests for you to try out.
In the tests folder, create a new folder named "data". We will refer to this as the data folder from now on.
The data files for your data driven tests will go in the data folder.
If you have a spreadsheet with data for a data driven test that StreamLineQA does not support, feel free to reach out to us for customization support. We can save you time by writing the code to read in the data from your spreadsheet and execute the tests you need.