Open ReubenTurner-esusu opened 3 months ago
There is a snippet on this page that reads:
var exceptionCount = 0; dynamic exception = $.tester.takeException(); while (exception != null) { exceptionCount++; exception = $.tester.takeException(); } if (exceptionCount != 0) { $.log('Warning: $exceptionCount exceptions were ignored'); }
However, the PatrolTester and PatrolIntegrationTester classes do not have a log method.
PatrolTester
PatrolIntegrationTester
log
Ah, thanks. There should be print() instead
print()
There is a snippet on this page that reads:
However, the
PatrolTester
andPatrolIntegrationTester
classes do not have alog
method.