Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

Method CustomReport

Add a custom report into Test Results

Usage

Function CustomReport( 
        Boolean Passed,
        String ReportTitle,
        Object ReportText,
        Boolean CaptureBitmap [Optional]
)

Parameters

Passed

Type: Boolean

Report as failed or passed - True = Passed, False = Failed

ReportTitle

Type: String

Title for the report

ReportText

Type: Object

Additional information to add into the report

CaptureBitmap (optional)

Type: Boolean

Default value: False

Attach screenshot for the report

Returns

No return value

Example

VBScript

Application("Demo").CustomReport true, "test title", "report text"
'To attach screenshot to report set CaptureBitmap option parameter to true
Application("Demo").CustomReport true, "test title", "report text", true

JavaScript

Application("Demo").CustomReport(true, "test title", "report text");
// To attach screenshot to report set CaptureBitmap option parameter to true
Application("Demo").CustomReport(true, "test title", "report text", true);

Documentation Categories

ZAPTEST

FARM

LOAD