What is Data Driven Testing

https://www.youtube.com/watch?v=gQF_Zlulk2U

  • Data driven testing is an automation testing, which tests the output and/or input values. These values are read directly from the data files rather than using hard coded values. The data files can be csv files, excel files, text files, data pools etc.

  • Separation of test and data makes tests logically simpler. A test containing several sets of hard-coded values can be rather difficult to modify and maintain. For instance, easy to extend  values in data file than to modify test commands.

  • Various inputs can be handled effectively.

  • When the storage contains both input and verifying data, a data-driven test performs following operation in a loop.

    • Retrieving input data from storage

    • Entering data in an application form and stimulates actions

    • Verifying the results

    • Continuing with the next set of input data




Comments

Popular posts from this blog

What is unit testing

Regression Testing