QTP Function-Export/Send Output/Result Data to Excel
The below function exports the data to an excel sheet from QTP. We can use this function to export the test results to excel. The function would be called every…
The below function exports the data to an excel sheet from QTP. We can use this function to export the test results to excel. The function would be called every…
The below function reads data from an excel file stored at some location, into an array. 1: Function ReadData(TestId) 2: Dim DataArray() 3: 'Specify Values of path 4: ExcelPath="path of…
Below is the QTP function which can be used in any general functional library to check/verify that a file exists or not. 1: Function CheckFile(FilePath)2: 'Create the File System Object3:…
Some times, we face problems with QTP menu bar. The menu bar disappears or some menu items disappear from the tool bar. To enable missing items or display all menu items in…
Integration Testing is is performed after Unit Testing. Integration testing is done when individual software modules are combined and tested as a group.Integration testing is the testing of combined parts…
Unit Testing is the testing of individual software components or modules. It is the foremost level of software testing and is commonly performed prior to integration testing.Unit testing performed in…
Gray box testing is a software testing technique that uses a combination of black box testing and white box testing. Gray box testing is not black box testing, because the…
White box testing strategy deals with the internal logic and structure of the code. White box testing is also called as glass box testing, structural testing, open box testing or…
Black Box Testing refers to testing without knowledge of the internal workings of the system being tested. For example, when black box testing is applied to software engineering, the tester…
Software Testing, being an important part of any project has it's own life cycle.Software Testing Life Cycle is divided into following Phases:* Proposal/Contract. --Analyze scope of project, Prepare Contract, Review…