POST with references

Andrej Podhajský said:

i don’t test this for myself yet, but from what i read, you should define variables in request object, put them in request body and then when calling request object fill those variables like e.g. in WebObject…
post body will be
{…
“filter1”: ${VARIABLE_F1}

“filter50”: ${VARIABLE_F50}
}
and call :
WS.sendRequest(findTestObject(‘New Request’, [(‘VARIABLE_F1’) : localTestCaseVariable1,(‘VARIABLE_F50’) : localTestCaseVariable50]))

P.S.: see?


YES!
THats exactly what I am looking for whole day long
Thanks a lot!!!