Hi Guys!!
Need you help.
I have a step(groovy script) in 1st test case which extracts and sets project variables.
testRunner.testCase.testSuite.project.setPropertyValue("ids", result[-7..-1]);
With this I can use the vaue of "ids" in the 2nd testcase by using ${#Project#ids}
All this works good and the end testcase runs sucessfully using the prject variabel when I execuet the testcases manually.
(that is via GUI, by clicking on the play button).
With GUI interface I can manually check that the project variable is updated by checking the Custom Properties tab.
The problem comes when I, execuet the 2nd testcase via command line using testrunner.sh.
So when I run the 2nd testcase using command line it, seems that it can not refer to the project variable.
Or the 1st test case was not able to update the project and set the project value.
Can someone guide me if I am missing a step here. Please let me know if you need more information.