Hello Sir Your explanation for Rest assured is awesome. Please cover auth 0.1, 0.2
@RetargetCommon3 жыл бұрын
Will upload soon
@manikandankm39743 жыл бұрын
Hello Sir , I am getting the below error while using list to store the array response . cucumber.runtime.CucumberException: java.lang.Exception: Cannot parse content to interface java.util.List because no content-type was present in the response and no default parser has been set. You can specify a default parser using e.g.: RestAssured.defaultParser = Parser.JSON; Kindly Help
@RetargetCommon3 жыл бұрын
Please print the response as it seems you are getting some invalid response that is not parsed by rest assured.
@kanchanasivamounika5766 Жыл бұрын
❤
@dhanyacm2871 Жыл бұрын
sir thanks a lot or the video..i am beginner in Restassured .Can you kindly tell me why we are converting json response object to map and json response array to list.kindly reply.can we use JSONArray and JSONObject instaed of this
@inspireQA Жыл бұрын
Instead of sysout we can print the response using log().all() method and we can use matchers methods to validate the response. Can you pls show the video related to that and by using Jackson data binder as well for serialization and deserialization
@gurulakshmigurumadhu33363 жыл бұрын
Hi, I have stored the JSON response in a file directory I want to convert that response into JSONOBJECT and extract keys alone, Here you have explained with restassured and URL, can you please explain that as well because I am not able to use typeref and other ways I tried I am getting unchecked conversion error
@praveenbennur42632 жыл бұрын
I want to fetch amount which is inside another json nested Jason .... [{ "intialAmount" : { amount : 1.0, "currency" : "USD" }}].... How to write code for this? response.get(intialAmount.amount)? or response.get(amount)? In both the cases I'm getting null can you please help? Thanks in advance... I want to validate amount from the response with amount I'm passing while creating the transaction.. So passed amount should be stored properly.