jsc
12 years agoRegular Contributor
create a passed checkpoint from script
Hi all,
can I somehow create a passed checkpoint from scripts?
Currently my code looks like this:
if (averageOpenTime > allowedTime)
Log.Error(some text);
else
Log.Message(some text);
Is it somehow possible to create a passed checkpoint (instead of the Log.Message entry) that will be shown as a green passed checkpoint in the keyword tests?
Best regards,
Joachim
can I somehow create a passed checkpoint from scripts?
Currently my code looks like this:
if (averageOpenTime > allowedTime)
Log.Error(some text);
else
Log.Message(some text);
Is it somehow possible to create a passed checkpoint (instead of the Log.Message entry) that will be shown as a green passed checkpoint in the keyword tests?
Best regards,
Joachim
- Hi Joachim.
Have you tried Log.Checkpoint() instead of Log.Message() in your script?