Forum Discussion
SmartBear_Suppo
Alumni
16 years agoHello,
You can also use Property Expansions to achieve this. For this you would create a Properties TestStep and create the properties you wish to use in your request. Then in the actual request body, you would use the Property Expansions, for example:
Regards,
Dain
eviware.com
You can also use Property Expansions to achieve this. For this you would create a Properties TestStep and create the properties you wish to use in your request. Then in the actual request body, you would use the Property Expansions, for example:
//Properties TestStep:
username: MyUsername
password: p4ssw0rd
//Request Body:
{
action: "login",
username: "${Properties#username}",
password: "${Properties#password}"
}
Regards,
Dain
eviware.com