After running scripts how you report results ,there is any
specific report form
Answers were Sorted based on User's Feedback
Answer / vishal
since the q is how we report ant not how qtp reports to us,
the answer i think is about defect reporting so it shoud be
by using quality center or excell sheet.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / hariprasad reddy
Using QTP utility statement we can send report to Test
Result Window.Here the utility statement is
syntax is
report.reportevent event status,stepname,details
Argument-1 : event status are 4 types
1)micpass
2)micfail
3)micdone
4)micwarning
Argument-2 : The status of object we are going to report
Argument-3 : The details of the object.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / deeps
Reporter.ReportEvent Eventstatus,reportstepname,details
eventstatus:
0 or micpass
1 or micfail
2 or micdone
3 or micwarning
reportstepname:
Name of the stepname in the report(object name)
details:
details of the object
Example:
Reporter.Reportevent 0,"custom step","step passed"
or
Reporter.Reportevent micpass,"custom step","step passed"
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ram
deeps answer is exact.But there is one more event
4- warning.we cant write directly "warning" we just need to
mention the digit in place of event status.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to test the mandatory fields in QTP?
How to pass a variable in Dos Command using QTP? Eg: Dim path1, path2 path1 = "C:\Test\sample1.doc" path2 = "C:\Test\sample2.doc" How can we pass these path1 and path2 inside the "copy" dos command? I tried like this. this is not working. oShell.run "cmd /K copy" &path1 &path2
Any one knows about descriptive programming to identify objects in a page? Kindly drop me mail prasanna.sabat@gmail.com
What is throw object?
I am trying to install QTP 9.5 but i am getting error message saying that ("Path is \QuickTest Professional\bin\vb_init.exe") vb_init.exe file is not find. can anybody give me the advise what to do ?
what is delay in QTP?
what is the difference between function and subroutine ....here every one knows theoretically...here my QUESTION IS WHAT IS THE MEANING OF FUNCTION CAN RETURN A VALUE AND SUB CAN NOT RETURN A VALUE .....WHAT DOE'S IT MEAN FUNCTION CAN RETURN A VALUE HOW FUNCTION CAN AND SUB CAN'T ....GIVE A EXAMPLE FOR BOTH ....HOW IT CAN AND CAN NOT...HELP ANDY ONE....
Hi there, I've installed a trial version of QTP to see if it works with my product but I cant automate selecting windows from a tree view? Can anyone give me any pointers? Many Thanks
what are the parameters you are considering for object identification?
How can i learn Descriptive programming in QTP. Please reply.
Please guide me release notes of Automation once scripts are completed
In a page i have N number of links at a time i would like to open those links by using QTP?how to do that?