Hello Everybody,
Please tell me the concept of recovery management in QTP by
giving any practical example of it.
Thanks,
Gaytri
Answers were Sorted based on User's Feedback
Answer / nath .t
Hi Gayatri,
Recovery Scenario is useful for to avoid the runtime
expections. QTP allows 4 types of expections. they are
1. Popup Expections
2. An Object
3. Test Run Error
4. Application Trash
Ex:- if u want to check login page. in login page have
User name,Password, OK, Cancel objects. u want to check for
different test data.
User name: must allows min:four characters and max:8
characters(only alphabets)
Password: must allows alphanumeric min:5 characters
and max:10 characters.
u have datatable in that so many test data like
UserName Password
1. Sai xxxxx
2. rama xxxxxx
3. krishna xxxxx
in the above table 1st test data situation is failed.
here one popup window raise at run time and it shows u must
enter min 4 characters. to avoid this expection at run
time we can use Popup window expection in recovery scenario.
if u go through Tools Menu--> Recovery Scenario
without using Recovery Scenario we can write our own script
also like as
if window("Login").dialog("Expection window").exist then
window("login").dialog("Expection window").winbutton
("ok").click
window("login").winbutton("cancel").click
end if
like this way we can write our own script to avoid
exception at run time.
| Is This Answer Correct ? | 4 Yes | 0 No |
Nath is right.
I will give some use ful tips.
First of all we have to find where can we get pop messages
etc---
Then we will use exist and click methods along with if
condition.
If object heirarchy .exist then
oh.click
we can use onerror resume next statement on top of the script.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / zayed
Gayatri,
Suppose when u click on .exe file, sometimes Security
warning message pops-up. This message box can be handled
thru Recovery scenarion. Let me know if u r still not clear.
Zayed
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nilanjan islam
when we face some unexpected error then we can use recovery
management.
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi Zayed,
The concept is clear to me,but can you please tell me how
to handle it. As you have given me the example, so how you
will handle in that case.
Please tell me in steps how to handle that and if possible
please also provide the code.
Thanks,
Gaytri
| Is This Answer Correct ? | 0 Yes | 0 No |
In qtp, how you can remove the spaces from string?
How to Test the mainframe application?
What are the types of object repositories? Which one is you are using?
HOW CAN WE GET THE VALUE OF TEXT BOX IN QTP? can you give me sample script for this where there is some condition. like if "text" THEN msgbox() else endif
Where you can store check point results?
how do you remove object repository at runtime and load object repository and verify it
Is it possible to split an action? How?
write script for bitmap image?
What are the steps involved in the recovery scenario wizard?
Hi guys, Our company has started to automate testing and started using the tool QTP.Iam new to QTP and I have the following questions to ask. Would appreciate if anyone could give me a hand on this and explain things in a detailed way. [1] Bugs outside checkpoints: I know that I can easily make the QTP do what I want inside the application. Also, I know that I can insert some checkpoints and that the qtp will notice if those conditions are not met. However, there are bugs and problems that might not be connected to a checkpoint (system crash, database error, losing session/logout etc.); how can I make sure that the QTP will notice such problems as well and flag a test as failed. [2] How to tell the QTP that when a particular statement is "false",it should flag it as, test failed and show in in the test report. In short how to tell the qtp that a test is false from the script so that it shows it in the report For Eg:- if(true) test passed // how to instruct qtp else test failed // how to instruct qtp [3] Test script portability: we are having several environments; If I record a test on User Interface, obviously, the qtp will save the URL; however, how can I make the qtp run the tests so that the url is provided dynamically. Is there a possibility to parameterize the web server.Is this the way to do it.I dont know? [4] Test management: How do I manage the tests? I guess we will be doing it in Quality Center, yet, it’s not perfectly clear to me how we will be doing that. [5] Running scheduled test sets: How do I group tests to a certain test set? How can I make this test set run at a predefined time? [6] Test maintenance: What do we need to do beforehand in order to enable for easy test maintenance, meaning small adjustments in tests? [7] Reports: What kind of reports on test results are available (either QTP or Quality Center)? Thanks in advance and hoping for an answer. Jen
Describe how Smart Identification is used
how will you load the test cases in ddt?