If there r 1000 test scripts that were written. If a change
to any functionality is to be made then how can we know in
which script is this functionality existing.
Answer Posted / minni
If u know the application and functionality u can know
easily.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How does QTP identify an object?
What is the keyword view and expert view in qtp?
Have you faced any problems with object repository?
what r the main attributes of test automation?
How to create scenario selector
Explain about datafile/verification of date file when file is not available in local system?
To which environments does quicktest professional (qtp) supports?
Explain the use of action split in qtp?
What test you perform mostly? Regression or retesting in your testing process?
How to Upgrade or support firefox 2.0 version on QTP 9.0? I have installed QTP 9.0 and installed firefox 2.0. But in REcord and Run Settings, it shows firefox 1.5 in Web tab for browser selection.
What is recovery scenario manager? When you go for recovery scenario manager?
give me the code to save all messages of inbox of gmail into a folder and notepad
What is the difference between local and shared object repository in qtp?
What is the difference between keyword view and expert view?
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