Hello,
I am taking a screenshot of a picture element on my mobile app and then comparing it to a bitmap image I retrieved from a web request. I know you can add a screenshot of the picture element to the report by using the Report.Screenshot(element) API. Is there a way I add the bitmap image I retrieved to the report as well?
Thanks for the help.
How do I add a Bitmap to the Report
Re: How do I add a Bitmap to the Report
You can use the Report.LogData API method.
Example:
Example:
Code: Select all
Report.LogData(ReportLevel.Info, "Screenshot", "This is a screenshot", bitmapImage);
Re: How do I add a Bitmap to the Report
Thanks Darren!