How to capture screenshots of Exceptions/Errors during run-
time?
Answers were Sorted based on User's Feedback
Answer / julia
Hello,
In QTP8.2, we can choose the run setting:
Test -> settings -> Run tab -> set ON save image of desktop
when error occurs checkbox
In QTP 9.2, follow the below navigation:
Tools -> Options -> Run tab -> In the drop down list
box "On Error"(default) is selected for "Save step screen
capture to results"
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / anil
There will be a syntax in QTP for capturing
the Exceptions in Runtime by
if (error occurs...) then
capturebitmapimage("c:\....")
end if
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / ravi_kanakam
When error occurs you can take screenshot of the desktop
and send the bitmap to result file.
if error occurs then
Desktop.CaptureBitmap("c:\bitmap.bmp")
Reporter.ReportEvent micFail, "Error Name", "<<img
src="c:\bitmap.bmp>"
end if
The above code will send the screen shot to the Result File.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / arunsingh
By using object.capturebitmap("c:\snap.bmp")
we can capture the screenshots of any screen at runtime.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / srikanth
Thanks Sridhar,
But im asking in QTP through script without tester
interaction
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / giridhar reddy
if you QTP is associated with Quality Center then it will
take the screen shot automatically by setting an option in
the settings/run... but I am also looking for with out
Quality center I have come across with an option in
checkpoints properties to capture the screen Image... I am
doing some sort of research once I get thru it I will
definetly let you guys know..
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mangesh
YOU CHECK IN RESULT OF YOU QTP SCREEN SHOT IS THERE
| Is This Answer Correct ? | 0 Yes | 4 No |
Hey I don't think that it is possible.
After all QTP is automation tool...it doesn't think like
human brain...you have to feed it all the scenarios,then
only it will follow the instructions.
Go to Tools>Recovery scenario manager : here you can give
the instructions to QPT to respond to errors.
| Is This Answer Correct ? | 1 Yes | 8 No |
What is difference between WR and QTP?
How we test web based application by using QTP
What are the advantages of QTP over WinRunner?
1. I have asked the same question for the third time, but i am getting wrong answers. Pls give me the script to count the number of edit boxes or checkboxes in an windows application screen. In windows application childobject is not working, anyone very urgent
1...HOW MANY TYPES OF OBJECT REPOSITORY ARE THERE IN QTP? 2....WHAT ARE THE REPOSITORY FEATURES EXPLAN. 3...HOW TO CREATE A RECOVERY SCENARIO? WHAT DOES RECOVERY SCENARIO MANAGER DO? 4...OPEN A WORD FILE AND MODIFIED WITH SOME VALUE USING QTP? 5... HOW TO CREATE EXCEL FILE USING QTP? 6... HOW TO RETRIEVE A VALUE FROM WEB TABLE? 7... WHAT IS QC REQUIREMENT TAB DO ? HOW TO MAP THE REQUIREMENT? 8... HOW TO PASS A VALUE FROM EXCEL FILE TO SCRIPT? 9...WHAT IS THE USE OF SPLIT FUNCTION?
can any boby tell me what is method or steps to connect the remote desk top by using QTP 9.2 version?
How you automate testscripts one by one or moduelwise or all at once
1.what is test automation life cycle?
Write a QTP script to enter a keyword in to Google search engine?
What is the file extension of the code file and object repository file in QTP?
What is the exact difference bet function and action in QTP Anybody can explain it in detail..Thanks in advance..
I'm facing this problem while automating my application..its a web based apps.. In my application there are few webtables are displaying in the page.In the different cells there are links and action buttons.Problem is there is link in different web tables corresponding to one name.Hence the properties of the objects(say a link) are same except the x,y co ordinate of the object.So my script is not able to distinguish between the two links present in different cells of web tables with same name.Kindly help on this..