InterviewSolution
| 1. |
What are the different types of frameworks? |
|
Answer» There are different frameworks available in selenium, but below THREE frameworks are POPULAR and you can CREATE these three different TYPES of frameworks using selenium are - Data-Driven Framework:- Currently Data Driven Framework is one of the popular automation testing frameworks. The entire test data is generated from some external files like Excel, CSV, XML or some database table, and it is called Data Driven framework. The data-driven test performs the same functionality with multiple input values. Keyword Driven Framework:- Keyword driven framework is also known as Table driven testing or action word based testing. When the INSTRUCTIONS and operations are written in a different external file like an Excel worksheet, it is called Keyword Driven framework. It is used to speed up automation testing by using the keywords for a common set of actions. Hybrid Framework:- It is a combination of both the Data-Driven framework and the Keyword Driven framework is called the Hybrid framework. Keywords are written in external files like excel file and code will call this file and execute test cases. |
|