WinRunner (592)
Load Runner (730)
QTP (4305)
Test Director (199)
Rational TestSuite (121)
Silk Test (103)
Selenium (886)
Apache JMeter (102) Explain the different kinds of frameworks in automation?
What are the different mouse actions that can be performed?
How do you test DLL files using automation Tool QTP?
How can we conduct U-I Testing by using QTP??????
What are the different kinds of test steps?
How to download a file in selenium webdriver?
List the parameters that one needs to pass in selenium.
Explain the difference between assert and verify commands?
How can you mark a test case as failed by using soft assertion?
UFT 12.02 which ALM version will support
Disavantages of document generator? How to take a print out of the steps in the Parameterized scripts?
how to post xml data from QTP scripts to any application?
On the website, the protocol has been changed https: to https what you will do? Tell me your approach?
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
When a scenario run exactly what happened?