who is the best faculty in Hyderabad for QTP?
Answer Posted / suresh
what is there in testing to learn....very simple .every one can teach.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How the exception handling can be done using quicktest professional (qtp)?
Explain the Different types of QTP test assets and their extensions?
Hi! My OTP script has several bitmap checkpoints included which I check in the test results xml file. The test is for SAP 4.7. I need to save these bitmaps to files or at least export them to the html file using the export function in the test results viewer. Could you please help me with this problem? Thank you in advance! Best regards, Peter
What are the key elements available in test result window?
Have you used xml check point in your project? How?
Excel sheet having some datas and some datas present in the application (in table). How will you compare these two datas? Write code to fetch datas from Excel sheet.
What is the default object synchronization timeout in qtp?
explain keyword driven framework with banking domain?
What are the advantages of parameterization ?
What is the difference between call to existing action and copy of an action?
Explain quicktest professional testing process?
what is the advantages and disadvantages of using functions instead of re usable actions
how do u manipulating INI, DLL and / or registry files in support of your test environment? actually what do u mean by INI and DLL or registry files. plzzz its urgent do answer
How many types of parameters are available in quicktest professional?
I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object