QTP General Functions to Define Web Objects
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…
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…
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…