Operating System Windows 10
Katalon Studio Version 5.10.1
Katalon Studio gives a popup error “There are errors in the script. Please fix before executing.” if you have a line like this in your script:
String cat //comment
Meanwhile these work fine:
String cat="" //comment
String cat
//comment
String cat; //comment
This issue was a huge pain cause it doesn’t highlight what line is causing it. Took me quite a while to figure out.