Please explain me in detail! How to handle runtime errors
in QTP useing recovery senario or with out scenario
Answers were Sorted based on User's Feedback
Answer / sathish reddy
Hi friends
We can also Stop the error by using below lines
MsgBox ("Error # " & CStr(Err.Number) & " " &
Err.Description)'this lines given the error number and
Description
Err.Clear 'this will clear the Error
| Is This Answer Correct ? | 4 Yes | 0 No |
Let me explain with out recovery scenario,
we can handle exeptions like pop windows by using IF
ELSE statements.
for example..
if window("XXXX").dialog("XXXX").exist then
window("XXXX").dialog("XXXX").winbutton("text:=XXXX").click
window(("XXXX)).winbutton("XXXX").click
else
<put remaining script here>
end if
and also by using methods like "on error resume next,
err.number, err.raise, err.information" methods.
if any queries on this..
nanda.dreddy@gmail.com
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / sesha sai shivanaresh
There are 4 trigger events during which a recovery scenario
should be activated. They are
A pop up window appears in an opened application during the
test run.
A property of an object changes its state or value.
A step in the test does not run successfully.
An open application fails during the test run.
These triggers are considered as exceptions and more
details regarding how to use Recovery Manager is given in
the QTP User Guide. Since there is hardly any space to put
up snapshots
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / pramod mallick
and also...
If any un-expected popup window appears
Then we can close all popup windows by using kill process
by window name. There is a QTP Utility function to kill the
window by process. We can use this also.
| Is This Answer Correct ? | 1 Yes | 1 No |
How to use Regular Expressions in QTP? give an example.
10 Answers ABC, Accenture, Ordain Solutions, SCL,
write a VBscript code to parametrize test script using test data from sqlserver database?
How do u retrieve data from a text file into different variables. i.e. in a text file named "source" , the data is like : india,1000,japan,200,china,50,singapore,45050 this is given in the first line of the text file. in the second line of the text file the dta is: sun,moon,planet,river,earth,water if u use "readline" method by using FSO concept u can retrieve the entire line in to a variable. but i want to import each field (ex: "india" in one variable, "1000" in another variable etc..). Apprecitae proper replies.
how many wayes we do the parameterization?
Give me some scripts for 1). checking webpage links (counting links,opening web pages,counting child elements)
hi testers,one script has three actions , at the of running three actions are running , how to set run only perticular action and what is the use of split the action? when it will be useful?
how will you handle the situation when object is not caputred during record?
How to record right click of a context menu and click on the selection ?
HOW DO U CALL A ACTION IN QTP?
How do you create new test sets in td?
what is the difference between wait and wait function
How you can make an action as re-usable action?