What are the advantages of QTP over WinRunner?
Answer Posted / rudraneel
sorry i have missed one important one that is
10.Winrunner uses TSL script(Test Script Language)
QTP uese VB Script.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
how will you load the test cases in ddt?
please give me the code for doing retesting of gmail login page using functions so the function has to give the value
explain structured testing? plz guys with exp. do answer
can test automation improve test effectiveness?
Plz Explain AUTOMATION REFERENCE MODEL?
What do you mean by checkpoints in qtp?
How to customize checkpoints with parameters?
Dear All , For UFT 12.02 which version QC or ALM will support ? Thanks Balaji
If the weblist is identified as webelement,and by clicking on webelement if the values are displayed,and if the values the values also identified as webelement.then how to fetch the values through script?
Hi How to retrieve data from web element line by line?
Where to use Property Let, Property Get, Property Set in UFT
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian
What is clean sweep?
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
What is the syntax to call one script from another?