Hi,
What is the best way to report a status to Katalon results?
if (something == exp_something) {
println(“PASS”) // send PASS status to results w/ description message
} else {
println(“FAIL”) // send FAIL status to results w/ description message
}
Thanks!