Method CustomReport
Add a custom report into Test ResultsUsage
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);
Comment
Create Custom report and attach screenshot to the report