In SoapUI, I have a lot of projects (separate xml files):
- The first one (init.xml) will initialize a lot of properties (ex: sessionId)
- the other project (other.xml) will use that sessionID
In the GUI, I simply use the transfert step to pass the value to a global property, and it works great.
In the command line testrunner.bat, I first run the "init.xml" project, then the other one (other.xml). But in the other.xml, the sessionId is not set. How could I export the sessionID from the init.xml run to the "other.xml" run?
Here is what i did test:
- specify a separate settings.xml (-t testsettings.xml) => testsettings.xml is not updated
- running the two steps in one (testrunner.bat init.xml test1.xml) => not supported
I would like to avoid merging all my project into one project.
Thanks