Forum Discussion
PM
8 years agoContributor
Yaaa ! but was thinking if it can b done w/o groovy ....like we add data source as excel in Test for data driven approach so we can get the response update in the same Excel .
avidCoder
8 years agoSuper Contributor
Then, manually you need to create Properties test step and then inside Request test step you need to parameterize the things wit the value. Like this :-
{
"id": "234"
"name": "Donny" (Parameterize the value of "name". Right click and Get Data from properties and set it here..)
}
New Request looks like this:-
{
"id": "234"
"name": "${Properties#name}"
}
And inside Properties test step click on + sign and add Property Key as "name" and Value as "Donny"
Hope it will help you out.