iamakshayshar/SoapUI-Extentter

SOAPUI 5.6.0 crashes when tests are executed at project level

Closed this issue · 2 comments

SOAPUI 5.6.0 crashes when using SoapUI-Extentter 4.0 in following cases:

  1. Running project via Groovy script.
    def project = testRunner.getTestCase().getTestSuite().getProject();
    def runner = project.run(new com.eviware.soapui.support.types.StringToObjectMap(), true);
  2. Or when executing the project from GUI.

@robinsinghdevgan - I checked on your issue. Below are my comments,

Make sure you have an empty values set below three properties in for the project properties,

  1. MongoDBIP
  2. MongoDBPort
  3. KlovServerUrl

With this both the issues will be resolved, but I HIGHLY recommend don't run via your first way. This will not run as expected and keep opening reports in browser in loop.

@iamakshayshar Thank you, adding these three to project properties solved the issue.

"but I HIGHLY recommend don't run via your first way. This will not run as expected and keep opening reports in browser in loop."

Yes, I did face this issue. Adding runner.waitUntilFinished(); resolved the issue.