I am glad Amod as you accepted my feedback and explained it well in this video. Keep good work up.
@ShenNagavlogs11 ай бұрын
I know how powerful and important this concepts is as a person who is asked my manager to setup the flow in postman each time I want to debug a payload
@amanmishra68082 жыл бұрын
Helpful video.Thank you
@rashmis11132 жыл бұрын
Hi Amod How to fetch the value from a nested Json using this method. When I try to use put to the key directly from a nested json , it is creating a new key value property. Could you please help me here..
@sriramkukkadapu8722 жыл бұрын
Neted json is tricky i think
@sanketnegi12 жыл бұрын
I am guessing it is just like List of maps and stuff
@ankitshrivastava1772 Жыл бұрын
Below in my json how i can change values in the Address object in the run time { "firstname" : "Ankit", "lastname" : "Srv", "gender" : "male"; "age" : 23, "salary" : 20000.00 "Address" : { "street" : "park avanue", "city" : "Newyork", "state" : "texas", "pincode" : 238383 } }
@RetargetCommon Жыл бұрын
Pls refer this video - Replace the value in JSON Document Using JsonPath | Rest Assured | Jayway JsonPath #restassured kzbin.info/www/bejne/jmjMoI1oYraFfNE
@vineetnt Жыл бұрын
very helpful video. Suppose if my json is converted into 2 pojo classes for e.g 'address' and 'features'. now using above method. can i map only 'features' pojo class to source json file and update selective parameters under features pojo class only?
@RetargetCommon Жыл бұрын
Yes..
@Its_Mee_laddu Жыл бұрын
How to update json if json contains nested json array or json object
@RetargetCommon Жыл бұрын
You can use jsonpath. Refer kzbin.info/www/bejne/jmjMoI1oYraFfNEsi=OJxW5RBAC_D5tpAd
@riyagupta14472 жыл бұрын
I am getting error for readValue method. The method readValue(File, Class) in the type ObjectMapper is not applicable for the arguments (File, new TypeReference(){})
@ghanshambambale44363 жыл бұрын
Very good explanation.
@veenatarak22763 жыл бұрын
Great work. Could you please explain how we pass the complex dynamic json with the help of TypeReference
@samarthjain51703 жыл бұрын
Hi Amod This rest assured series is completed ?? Or you are going to upload more videos in future?
@virochan152 жыл бұрын
Thanks for informative video series. I tried this and it works - address.setCity("Delhi"); System.out.println(address.getCity()); o/p - Delhi Is this the correct one?