Forum Discussion
deepesh_jain
15 years agoFrequent Contributor
Hello Pallavi,
My mistake. The line:
def response_holder = tstep.getProperty("response");
returns the property response but not the value of the "response". Update the above line to below:
def response_holder = tstep.getPropertyValue("response");
and it should work.
Let me know if this works.
Regards,
Deepesh Jain
My mistake. The line:
def response_holder = tstep.getProperty("response");
returns the property response but not the value of the "response". Update the above line to below:
def response_holder = tstep.getPropertyValue("response");
and it should work.
Let me know if this works.
Regards,
Deepesh Jain