-1

I have a scenario in which I have 3 test cases(Warm Up, Store Entities, Fetch Entities) in 1 test suite(Server warm up request). In this, First I have to run Warm Up request and then Store Entities, Fetch Entities both in parallel.

Please help and let me know how I can do it.

Please see the attached image for the reference.

Thank you in advance for your help.

enter image description here

  • Did you try the documentation? https://support.smartbear.com/readyapi/docs/functional/running/multiple-items/suites.html – SiKing Aug 13 '21 at 22:23
  • Yes, I have tried/read this but this is saying to run either parallel or sequential. However my requirement is to run few test case in parallel and few test case in sequential of a test suite. – Hari N. Yadav Aug 16 '21 at 03:53

1 Answers1

0

In your test suite:

  1. Disable your Warm up.
  2. Set the test suite test run mode to parallel.
  3. Create a Test Suite setup script that contains: testSuite.getTestCaseByName("Warm Up") .run((com.eviware.soapui.support.types.StringToObjectMap)context, false)

There is some additional detail on my blog.

SiKing
  • 10,003
  • 10
  • 39
  • 90