05-28-2014, 06:07 PM
Hi everyone. I have been using QTP for a long while but this is a first to me..
I'm automating a web based application and everything works, except for the reporter!
when I'm trying to open the report after the run (from within QTP, using the result viewer, just the xml.. whatever) I'm getting "Could not load run result"
I was trying several different things, but I can't figure this out.
here is the info i have:
while trying this:
I get the msgbox, but not the report.
however, if i'm doing this:
I can open the report.
even doing this:
makes it unable to open the report.
I am grasping at straws here and I really need some help.
thanks in advance!
I'm automating a web based application and everything works, except for the reporter!
when I'm trying to open the report after the run (from within QTP, using the result viewer, just the xml.. whatever) I'm getting "Could not load run result"
I was trying several different things, but I can't figure this out.
here is the info i have:
while trying this:
Code:
If Browser("Browser").Page("Page").Frame("260266_20").Image("10_1_5").Exist Then
msgbox "test"
Reporter.ReportEvent micPass, "Testing", "Test"
End If
I get the msgbox, but not the report.
however, if i'm doing this:
Code:
If True Then
msgbox "test"
Reporter.ReportEvent micPass, "Testing", "Test"
End If
I can open the report.
even doing this:
Code:
Browser("Browser").Page("Page").Frame("260266_20").Image("10_1_5").Click
Reporter.ReportEvent micPass, "Testing", "Test"
makes it unable to open the report.
I am grasping at straws here and I really need some help.
thanks in advance!