When I grab the json result as a veriable in a Scenario,how can I use it in other Scenario.
Scenario: One
...
Then I grab wallet address "$..address" as "company_address"
...
Scenario: Two
...
When I set JSON request body to:
"""
{
"company_address": "{company_address}"
"""
When I send a POST request to "{url}"
...
But,in the Scenario Two, company_address'value is not what I want.
When I grab the json result as a veriable in a Scenario,how can I use it in other Scenario.
But,in the Scenario Two, company_address'value is not what I want.