What kind of errors can b handled in QTP in real time
scenario?
Answer / sreeprasad
1) Pop-up Window
2) Object state
3) Test run error
4) Application Crash
| Is This Answer Correct ? | 6 Yes | 0 No |
Ehat is the descriptive programing in QTP?
How is the Bitmap checkpoint different from Image checkpoint?
How to get all the objects count and objects names in webpage using QTP ?
where did you automate in your project?(please tell me example senarios)
In Datatable having the data like this S.no Name Address 1 raj hyderabad 2 suresh Mumbai 3 shyam chennai 4 dev banglore i want to get the shyam row id & column id using scipting i.e 3,3
How to do call a output parameter from one action to another action??/
How to call .vbs functions in QTP? plz Explain indetail
what is the difference between testing and debugging?
What is obsolute path and relative path in QTP..? How to access them and what are the differences between them...??
What are the Automation Limitations??
Can u tell me example for virtual objects?
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