What is Step generator in qtp? wt is the use?
can u any body explain me? plz
Answer Posted / ashish srivastava
Step Generator is the in built functionality of the QTP to
generate the script.
Navigation:
Insert-->Steps-->StepGenerator
Or press F7 from the keyboard
It will generate the appropriate script as you move on the
steps
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
In what occasion we can specify global sheet and action sheet?
Explain the check points in quicktest professional?
If u r using library files (Instead of Check Points) , How do u do bitmap check ?
How the exception handling can be done using quicktest professional?
If you are testing a web application then what will you test in that application?
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
In an interview, what r the general questions asked in SQL which is realted to testing ?pls give me anwser to this question?
Have you used xml check point in your project? How?
i have asked earlier only one question how to test web application using QTp plz send me the answer quickly
Hi Friends, Would be great if you can provide the Model Question paper, Web site link or any reference s. Thanks & Regards, Byzoor,
How are actions and functions different in QTP?
Difference between action & Reusable action?
What are the Application Functions available in QTP?
How does you test a weblink which is changing dynamically?
Hi, I have 2 dropdown listboxes called region and city/area. It needs to select one region(Santa Clara) and one city/Area (Sunnyvale).So I put this in the for loop and I am storing the Items in the variable called itemname. The regions value will get changed,so I used reg expression for this regions. This is my code Browser("MLSListings.com").Page("MLSListings.com").Link("ยป County/Area").Click Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Check CheckPoint("regions") ListSize=Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetTOProperty("items count") For i = 1 To ListSize-1 Itemname =Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetItem(i+1) Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Select Itemname ................. If I run the script,I am getting the following error, Cannot identify the specified item of the regions object. Confirm that the specified item is included in the object's item collection. Any Help? Thank you, Uma