ContributionsMost RecentMost LikesSolutionsCannot start ready API after update! I installed new version ready api and can't run it now! SEND FILE WITH POST/PUT METHOD AS FORM-DATA I have no idea how to send file in put request with content type "form-data". I need send it as parameter, I attached screenshot with request that I need automate. Re: HOW CAN I CHECK WHAT OBLECTS IN JSON SORTED CORRECTLY BY SOME KEY? But I need check what server sorted it correctly! I test API method what sort something. Re: HOW USE RESULT FROM DATASOURCE IN GROOVY AND HOW USE SQL RESULT FOR ASSERTETION IN OTHER STEPS? The problem is that I get row as result in datasourse, and I don't know how to address to it further..I attached screen. HOW CAN I REPETE TESTSTEP UNTILL GET SOME SPECIFIC RESPONSE? I have testcase with testeps with video uploading and second testest with checking status for uploaded video in first step. How can I loop second step untill server will send status 200 - video was uploaded succesufully. HOW USE RESULT FROM DATASOURCE IN GROOVY AND HOW USE SQL RESULT FOR ASSERTETION IN OTHER STEPS? How use result from datasource in groovy (I use Dataconnection) and how use sql result for assertetion in other steps? Could I convert result in Json? GET DIFFERENCE BETWEEN 2 JSONS AND GET SURPLUS FOR JSON1 TO JSON2 How compare 2 json response, one like [{id:5, color:red}, {id:8, color:blue}{id:9, color:blue}{id:2, color:green}] and secound like {[id:2, status:1], [id:8, status:2],[id:100, status:1]}, I need comparing only for id value and other parameters should be ignored. I wish to get difference between these jsons and get surplus for json1 to json2 and on the contrary, get surplus for json2 to json1. Example: json1:[{id:5, color:red}, {id:8, color:blue}{id:9, color:blue}{id:2, color:green}] json2:{[id:2, status:1], [id:8, status:2],[id:100, status:1]} surplus json1 - json2 by id= [{id:5, color:red}, {id:9, color:blue}] surplus json2 - json1 by id= {[id:100, status:1]} HOW CAN I CHECK WHAT OBLECTS IN JSON SORTED CORRECTLY BY SOME KEY? How can I check what oblects in json sorted correctly by some key, I need something like this: Assert what objects sorted by color in ABC order: assert(isSort([{id:5, color:red}, {id:8, color:blue}{id:9, color:blue}{id:2, color:green}])) = false assert(isSort([{id:9, color:blue}, {id:8, color:blue}{id:2, color:green}{id:5, color:red}])) = true HOW CAN I USE CUSTOM PARAMETERES IN SQL QUERY? How can I use custom parameteres in SQL query, I want use datasourse step with data connection and use something like select * from dbase where {$param_1_for_sql} in my requst into datasource. HOW CAN I SAVE DOWNLOADED IMAGE BY DIRECT HTTP REQUEST AND COMPARE IT WITH MY LOCAL IMAGE? How can I save downloaded image by direct http request and compare it with my local image?