Answer Posted / gabbar
QTP>>fILE>>CONNECT TO QC>>URL AND THEN CONNECT
BY MENTIONING DOMAIN AND PROJECT DETAILS.
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
How do you test DLL files using automation Tool QTP?
What is a data driven test in qtp?
How to remove the associated function library?
Give the syntax to import/export xls into qtp.
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
What is the difference between a Function and Procedure in QTP?
Connect to QC using AOM.
How to create scenario selector
In QA Testing when do you use Loadrunner vs QTP? What are the main differences between those two tools? Explain the purpose with real world scenario examples...In advance thank you!!!
What is the difference between keyword view and expert view?
What are the different types of recording modes in qtp? Which will be used when?
what is the mail use of frame work(with detail). architecture for keyword driven frame work
Can QTP be used for GUI testing ?, We are using Java with MySQL and Operating system is Linux. We are NOT using the web.
What are main panes available in qtp test browser?
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