Hi
In my proyect I have a test case for testing UI. Here I get a certain value using global variable.
Then, this value I need to place it in the request message of a SOAP web service request body like this:
TEST CASE 1:
…
Globalvariable.variable1 = value;
…
SOAP:
…
< something > Globalvariable.variable1< / something >
…
I know thar for each web service I have a place where I can put variables and then do something like this:
- ${variable}
…but this is NOT what I want because it is not the same.
Is it possible to do this?