48. How To Create JSON Object Payload Using POJO?

Поділитися
Вставка
  • Опубліковано 6 січ 2025
  • Hello testers,
    POJO is another way of creating JSON request payload. We will learn to create a very simple JSON Object payload in this video.
    GIT Repo - bitbucket.org/...
    If you do not like my content please share your feedback so that I can improve myself.
    If you like my content then please like, subscribe, and share.
    Thanks
    Amod

КОМЕНТАРІ • 14

  • @IrinaSweety
    @IrinaSweety Рік тому +1

    Love the way you explain everything! So happy I found your cannel. It helps me a lot with building my framework !!!! I very much admire and appreciate the work you have done! Thank you so much!!!

  • @rohitcmrec
    @rohitcmrec Рік тому +1

    Cannot serialize because no JSON or XML serializer found in classpath..............getting this and i dont see you have mentioned about this in the videos. Please explain ( i know the asnwer )

  • @Abhisheksharma-wj5gw
    @Abhisheksharma-wj5gw 3 роки тому +1

    Ur teach amazingly.thank you for ur effort.
    I am expecting complete framework of rest assured.

  • @kishorem8488
    @kishorem8488 3 роки тому +2

    Awesome content 🙏

  • @purnapcn8970
    @purnapcn8970 3 роки тому

    Really good

  • @sportstalk6920
    @sportstalk6920 2 роки тому

    If restAssured has the mechanism of serialization then why do we even need to use objecrMapper for reatAssured testng?

  • @sureshisoft4555
    @sureshisoft4555 3 роки тому

    Ur all videos are amazing...Please start posting video on Rest assured framework from scratch...

  • @maheshz2742
    @maheshz2742 3 роки тому

    many times requested please upload videos frequently so that preparation very easy please complete series asap

    • @priyankamotamarry7188
      @priyankamotamarry7188 3 роки тому +1

      Hi Mahesh, we need to wait until he (Amod) post the new video. We cannot push him to do, because he is helping for us (QA) without expecting single penny. when he had time, he is posting and creating new videos. I hope u watched his videos, u can able to see timings while creating the videos(Midnight)…!

  • @Abhisheksharma-wj5gw
    @Abhisheksharma-wj5gw 3 роки тому

    There is any way to pass sub sequent request by using pojo concept?
    Suppose we create 1 post request and we need to run one get request but it will take ID from post request.
    How we can achieve by using pojo concept?

  • @arunmohan1950
    @arunmohan1950 3 роки тому +1

    Thanks Amod. Can you pls explain about complex json object?

  • @manasranjan3854
    @manasranjan3854 3 роки тому

    Hi Amod, Thanks again for the wonderful video. In this example, can we leverage Lombok to use @Builder annotation and to pass JSON Object payload, i tried this and it seems to be working. Employee e = Employee.builder()
    .firstName("Manas") .lastName("Ranjan").gender("Male").occupation("Tester").build();
    {"firstName":"Manas","lastName":"Ranjan","gender":"Male","occupation":"Tester"}