Forum Discussion

durgapandey's avatar
durgapandey
New Contributor
5 years ago

Saving json request in a excel format

I have to save some 500 request but the limitation is it cannot be done in one request(not more than 50 in one go). So I have created 10 testcases to create 500 responses. Now I want to save that response in a excel (test case wise) and lastly fetch row wise to pass it in my another request.

Please help . I am very new to soap ui.

 

My request body is :

[

{
"a1" : "test1",
"a2: "test2",
"a3" : "test3",
"a4" : "test4"
},

{
"a5" : "test5",
"a6: "test6",
"a7" : "test7",
"a8" : "test8"
}

]

 

My response is :

[
{
"resourceId": "test1",
"created": true,
"message": "Success"
},
{
"resourceId": "test5",
"created": true,
"message": "Success"
}

]

 

5 Replies