If I want to run more than one test (With different
functionality) with in one script, then what i do? plz.
explain with any example.
Answer Posted / mahesh
use automation model
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Will down time for server and content maintenance/upgrades be allowed? how much?
What are the challenges u faced in testing with crm domain? How u overcome with?
What are the benefits of qtp?
what are all the fileds present in object repository?
Why do you create a text checkpoint on a Web application? What is the purpose of the Close method?
Suppose I have three hyperlinks with same properties. How to solve this and what are the ways to solve this. we can solve this by using index property but what are the other ways we have have to solve this problem. Login (href: btnlogin.aspx) Login (href: Sourcelogin.aspx) Login (href: homelogin.aspx)
With what extension you can save the list of tests in a file to run in test batch runner?
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!!!
hi in real time who will execute the qtp test scripts? my faculty said, in a companty automation testers are written the test scripts and manual testers are execute the test scripts...IS IT RIGHT OR NOT?
How to modify the text checkpoint?
How to handle the exceptions using recovery secnario manager in quicktest professional?
What is the virtual object?
Connect to QC using AOM.
What is exact meaning of Database Checkpoint in QTP 9.2 and what are the different types of the database check points?
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