gabe1
10 months agoNew Contributor
Workaround for MessageType when using Region.Check method
Hey. I need to move away from Region.Compare to Region.Check because of some expected tolerance in pixel values and Region.Compare only has PixelTolerance and not ColorTolerance. However, Region.Ch...
- 9 months ago
I ended up doing this, which works but it just feels really stupid that 2 core Test Complete functions that are seemingly the same take different arguments.
- Change playback options so tests don't stop on error
- Create a new onError handler
- Inside this, stop the execution for the current test only
function GeneralEvents_OnLogError(Sender, LogParams) {
if (!LogParams.MessageText.includes('The region checkpoint')) {
Runner.Stop(true)
}
}