I have a `Groovy` script, it is present as a test step. I need to pass a parameter value from it to another `Groovy` script, which is in a script assertion, in a `SOAP` request. These are executed after each other. `Property Transfer` step is unable to do this.
Solved! Go to Solution.
Hi,
You can use the context object to pass the value.
// in groovy script
context.myvar = "somevalue"
// in script assertion
assert context.myvar == "somevalue"
See also the example SoapUI project file attached.
Hi,
You can use the context object to pass the value.
// in groovy script
context.myvar = "somevalue"
// in script assertion
assert context.myvar == "somevalue"
See also the example SoapUI project file attached.
I loaded your script and ran it in Ready 2.6 but it fails.
Subject | Author | Latest Post |
---|---|---|