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 |
What do you mean by iteration?
What are the methods used in UFT to handle exceptions or run-time errors?
IF THE GUI OF APPLICATION IS CHANGED THEN IS THERE ANY NECISSITY TO CHANGE OR UPDATE OUR TEST SCRIPTS
How do i relate the checkbox properties with webelement when checkbox properties are changing on every login to the application
hi i am new to qtp i need to run all files by a batch what is the procedure and what are following actions to be take?
When should u feel that u can stop testing now? The following are few of the common Test Stop criteria:
VB scrip has a special command named LBound, which returns the starting index of an arry. What are the possible indexes an array can start with? options are given below. and one only the correct answer. pl select it 1. any index 2. only even non-negative 3. only 0 4. any non-negative integer
How to handle "Java Runtime error" popup window in the web application ? Sometimes the application throws the error repeatedly... Is there any browser setting available to disable the error ?
What is the ur roles and responsibilities as automation testing engineer?
which command u will use to access the application through descriptive programing?
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
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