What is the latest version of QTP? aster googling i found
it 9.5 . but somewhere in my frnds resume i hve seen 10.0
so i am a bit confused pls let me know.
Answer Posted / sailaja
Latest version is 10.0 but notyet released, so wan can say
9.5.......
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
what r the main attributes of test automation?
There is an built in window application in qtp9.1,i.e.Flight4.0.i want to implement the recovery maneger on it.How can i do this?
what are all the fileds present in object repository?
What is the difference between keyword view and expert view?
What is keyword view in qtp?
distinguish between old version and new version QTP features.
What are the differences between quicktest professional (qtp) and winrunner?
what are the critical test cases in crm? tell me atleast 5 critical test cases? what are the critical bug u find out while testing crm domain?
How can i initiate the objects to find uniquely in OR
Is it possible to change the property value at runtime? How it is possible?
What is system testing and what are the different types of tests you perform in system testing?
What are the different types of recording modes?
How can I find out the cursor position through QTP suppose I am keep tabbing(Pressing the tab key continuously) and stoped at a position Now I want to find out where the cursor position is
Have you done batch testing in qtp? If yes how you are doing?
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