why the smart identification is not there in WinRunner
Answer Posted / ravi
WR doesnt have smart identification. Only QTP has it.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
I am getting the "test object property" Description properties "toolkit class" value By using "gettoproperty" in run time But my problem is how to get Ordinal Identyfier's type and value Type is index, value is 0 How can i keep this values in to required place How can i get these values in runtime I have to insert these "index" and "value" into another area Is there any script for this like "gettoproperties","Getroproperties" If anybody knows,please help me .
How do you handle multiple banners(at the top the page, the banner is scrolling) in a web page(Dont take the name property(regular expression))
How to check bitmap output value?
what testplan contents and what test strategy contents,what is the diff b/w them
what is the difference between modular framework & datadriven framework
What is the use of defining a newobject in the object repository "Define New TestOject". How to use this further. If we define new testobject, how can it recognizes the objects properties of any application.
I want two test two agents login for the flight website. Here is the scenario: I want to go through 1-3 rows for one user login and other user login I want to go though 3-5 rows. How would you set this up in qtp. Thank You
How many types of Automation frameworks are there in UFT? Describe them.
Give me detailed theritical explanation about keyword driven, hybrid framework, environment variables, hybrid frame work
Explain the concept of how quicktest professional (qtp) identifies object?
can u explain relative path architecture framework in qtp?
How can i use virtual objects? If have i created one new virtual object in a virtual object manager by following instructions.
What is the syntax to call one action in another?
Did QTP prove efficient for your project? Yes or No, explain?
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