Automation Framework: Data Driven Framework
Data Driven Framework is a systematic approach to test an application. In data-driven framework test input and output values are read/write from/to data files (Mostly Excel files) and are loaded…
Data Driven Framework is a systematic approach to test an application. In data-driven framework test input and output values are read/write from/to data files (Mostly Excel files) and are loaded…
A Modular Automation Testing Framework is one of the most basic type of automation framework. In Modular Automation Framework, each business module/functionality is separated out and handled independently. It…
Linear framework is the most simple of all the frameworks. Linear framework has individual scripts for each test case and is executed individually. It depicts the basic record and playback…
Automation Frameworks can be classified into following types: Linear FrameworkLinear framework is the most simple of all the frameworks. Linear framework has individual scripts for each test case and is executed…
Advantages of Automation Framework:- Low cost for maintenanceIf there is change to any test case then only the test case file needs to be updated and the Driver Script and…
A test automation framework can be defined as a compilation of assumptions, concepts, and practices that provide support for automated software testing. Framework comprises support programs, processes, code libraries etc…
Writing Test Cases directly to QC is quite a cumbersome task. So To simplify the process, We can create the test cases in an excel sheet and then upload them…
I worked on a requirement, where i had to view the contents of folder in documentum by double clicking the folders. I used the following code for this… 1: 'Wait…
The following QTP code can be used in case we want to select multiple values in a list box. Here, I have selected all the items. 1: Set oPage=Browser("Browser").Page("Page Name")…
While automating a web application, we encounter objects which are used again and again. We can always add them to out object repository, but iy would make the repository very…