Forum Discussion
2 Replies
- googleid_118035ContributorHi All,
Can use Log.Message() with other method as well.
Log.Message("MessageText","", pmNormal, null, Sys.Desktop.Picture());
Log.Checkpoint("Check point message","", pmNormal, null, Sys.Desktop.Picture());
Log.Warning("Warning message","", pmNormal, null, Sys.Desktop.Picture());
Log.Error("Error message","", pmNormal, null, Sys.Desktop.Picture());
My issue been solved.
.............
Thanks
Dev - googleid_118035ContributorHi All,
I just found the solution from following link
http://smartbear.com/forums/f74/t89334/how-can-i-post-screenshot-and-text-to-the-same/
Solution is given by Tanya and its solve my issue.
Log.Message("MessageText","", pmNormal, null, Sys.Desktop.Picture());
So above solution can use with following method,
Log.Message()
Does its possible to use above solution with following log methods?
Log.Checkpoint()
Log.Error()
Log.Warning()
Or is there any differnce way to do its?
......................
Thanks
Dev