' Example usage
CustomReportEntry micFail, "Custom Report Example", "<DIV align=left>This is a <b>custom</b> report entry!</DIV>"
' =============================================================
' function: CustomReportEntry
' desc : Creates a customized entry in the result file, you
' can use standard HTML tags in the message.
' params : strStatus is the result, micPass, micFail etc
' strStepName is the name of the step
' strMessage is the failure message, this can contain
' html tags
' returns : Void
' =============================================================
Function CustomReportEntry(strStatus, strStepName, strMessage)
' create a dictionary object
Set objDict = CreateObject("Scripting.Dictionary")
' set the object properties
objDict("Status") = strStatus
objDict("PlainTextNodeName") = strStepName
objDict("StepHtmlInfo") = strMessage
objDict("DllIconIndex") = 206
objDict("DllIconSelIndex") = 206
objDict("DllPAth") = "C:\Program Files\Mercury Interactive\QuickTest Professional\bin\ContextManager.dll"
' report the custom entry
Reporter.LogEvent "User", objDict, Reporter.GetContext
End Function 'CustomReportEntry
Tuesday, 18 October 2011
Custom Report Entry: Creating a customised entry in the results.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment