Hi,
I have list of JSON objects which contains information about each request.
ex:
[
{
“method”: “get”,
“endpoint”: “/goto/”
“requestParam”: [{“param1”:“val1”},{“param2”:“val2”}]
}
…
…
]
Is this possible to create requests by iterating this list and execute scenario for all this requests.
Thanks in advance.