Forum Discussion

getarbind's avatar
getarbind
Occasional Contributor
7 years ago
Solved

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\test...
  • groovyguy's avatar
    groovyguy
    7 years ago

    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.