Forum Discussion

plaidshirt's avatar
plaidshirt
Contributor
6 years ago
Solved

Transfer parameters between Groovy scripts in SoapUI

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.

  • 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.

2 Replies

  • JHunt's avatar
    JHunt
    Community Hero

    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.

    • mgroen2's avatar
      mgroen2
      Super Contributor

      I loaded your script and ran it in Ready 2.6 but it fails.