getarbind
8 years agoOccasional Contributor
How to run multiple soapui ng project from command line
Hello,
I am trying to run multiple soapui ng project from command line. I have created a bat file and put the below command in that file
"C:\Program Files\SmartBear\ReadyAPI-1.9.0\bin\testrunner.bat" -FPDF "C:\SOAPUI\PAM\FIN External Pay Acc Regression Project.xml"
"C:\Program Files\SmartBear\ReadyAPI-1.9.0\bin\testrunner.bat" -FPDF "C:\SOAPUI\SPASAP\FIN External Sch Pay.xml"
When i try to run it, it executes only first test project.
Need help here so that i can execute both and in parallel fashion
Thanks
This is how my batch file is set up and it works:
start cmd.exe /C testrunner.bat "-RTestSuite Report" -FPDF "-EDefault environment" "C:\path\to\my\project1.xml" start cmd.exe /C testrunner.bat "-RTestSuite Report" -FPDF "-EDefault environment" "C:\path\to\my\project2.xml"
The batch file lives in my Smartbear\ReadyAPI\bin folder.