Automation Testing, Manual Testing, QTP/UFT 11 , QC/ALM 11 ,SAP TAO, Unix, Selenium, Oracle SQL, Shell Scripting and For Online Trinings to contact me : Cell:+91-8897972059 , Email Id : quicktestprotech@gmail.com

Sunday, November 14, 2010

QTP and Reporter Objects

Reporter Object is used for sending information to the test results. With the help of this object you can: 
  • >Report the status of test results (like pass, fail, warning)
  • >Enable/Disable reporting of step(s) following the statement.
  • >Retrieve the folder path in which the current test's results are stored.
  • >Retrieve the run status at the current point of the run session.
There are some very important methods and properties associated with it.

ReporterEvent Method:

I think this is a very common method used with Reporter object. I am sure even if you have worked on QTP for a relatively short period, you would have come across this.
Its syntax:
Reporter.ReportEvent EventStatusReportStepName,Details
where EventStatus can be:
or micPass: If this step runs test passes which is shown in test report.

or micFail: If this step runs test fails which is shown in test report.

or micDone: Used to send message to the test report and does not affect status of test. 

or micWarning: Again, used to send warning message to the test report and does not affect status of test. 
and 
ReportStepName is name of step
and 
Details are the user defined details for the given step.
For Example:
Reporter.ReportEvent micPass, "Login Authorization", "The user-defined step passed."

Filter property

I have mentioned this on my other post Some Useful Tips with QTP but would like to mention it again here since I get a lot of questions on this.
There can be situations where you don't want the full status displayed on the test report. This property can be used to selectively filter the status of your tests.
Its syntax: 
Reporter.Filter = NewMode
where NewMode can be:

0 or rfEnableAll: This is the default mode. All reported events are displayed in the Test Results. 

or rfEnableErrorsAndWarnings: Only those events with a warning or fail status are displayed in the Test Results. 

2 or rfEnableErrorsOnly: Only those events with a fail status are displayed in the Test Results. 

or rfDisableAll: All events in the Test Results are disabled. 

ReportPath Property

This is used to get the path in which current test results are stored.
Its syntax:

Path_of_Results Reporter.ReportPath

RunStatus Property

This is used to get the current status of the run session
Its syntax: 
Reporter.RunStatus
For Example: 
if Reporter.RunStatus = 0 then flag=1;

0 comments:

Post a Comment

Loading...