Forum Discussion
SmartBear_Suppo
Alumni
16 years agoHello,
The reason that you're getting this error is that you're running code in the body of a class definition, which is not allowed. Either remove the class declaration, making it a script, or move the code to a method inside the class:
Regards,
Dain
eviware.com
The reason that you're getting this error is that you're running code in the body of a class definition, which is not allowed. Either remove the class declaration, making it a script, or move the code to a method inside the class:
import ...
import ...
import ...
import ...
def myrunner = new SoapUIProTestCaseRunner();
myrunner.set...
myrunner.set...
myrunner.set...
myrunner.run();
Regards,
Dain
eviware.com