iamakshayshar / SoapUI-Extentter

This is an easy utility create to generate extent report & Klov reports based on SOAPUI project execution. This utility supports SOAPUI PROJECT execution report, SOAPUI TESTSUITE execution report & SOAPUI Individual TESTCASE execution report
https://iamakshayshar.github.io/
Apache License 2.0
3 stars 4 forks source link

SOAPUI 5.6.0 crashes when tests are executed at project level #7

Closed robinsinghdevgan closed 2 years ago

robinsinghdevgan commented 2 years ago

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.
iamakshayshar commented 2 years ago

@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.

robinsinghdevgan commented 2 years ago

@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.