waht is the difference between QTP 8.2 and 9.0 version
Answer Posted / sudhakar
In QTP9.0 two more options have been added as the QTP8.2 is
divided into
1.test pane
2.active screen
3.data table
4.debug viewer pane
5.tool options
the two things added in 9.0 is it is divided into 7 parts
the above 5 and
6.information pane
7.missing resources pane
and some of the tool options have been made as menu items
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What do you to script when objects are removed from application?
what is the structure for the data driven framework
What is the use of sendkeys and what are send keys
wht type of User defined functions or Java Releated functions Do we write in VB scripting
If you have two monitors one is of 19inch and the 2nd one is of 24inch,if you want to write same QTP script in both the two monitors is there any changes required in the script?
if our qtp vb Script may be Currepted then What we want do?
How to Test the mainframe application?
Does QTP run in any environment?
Write the code for,In the page screen we have total 10 Links,out of these I have to click 9th link
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
Hoe can we do retesting using functions please give the code for it using login page
How to give a call to another action from one action?
Where you get the run time data table?
How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538
What is parameter in qtp?