Session 7: API Testing | RestAssured | Types of Authorizations | Faker Library

Sdílet
Vložit
  • čas přidán 11. 09. 2024

Komentáře • 48

  • @Aj21093
    @Aj21093 Před měsícem +1

    Concepts around JSONObject, JSONArray got super clear. Thank you so much for your efforts and these amazing lessons.

  • @raman_reddy99
    @raman_reddy99 Před 11 měsíci +1

    Sir, you are a stalwart in the field of test automation. The way you teach and explain concepts is a great source of inspiration for many aspiring test automation freshers and professionals. I have been following your guidance for the past two months, and your playlist's exceptional content and explanations are unparalleled on CZcams. Thank you so much, sir

  • @peacelilly2200
    @peacelilly2200 Před rokem +1

    I don't know how to thank you, but you have cleared many of my doubts I was having from so long. You are an awesome teacher. Thank you so much from the bottom of my heart for uploading so many valuable videos for free. Your channel is my first point of access whenever I am having any doubt anywhere.

  • @xXMrThomasXx
    @xXMrThomasXx Před 4 měsíci +1

    It`s very useful session. This concept of JsonObject and Array are great and authentication. Thx for that :)

  • @avishmadan4460
    @avishmadan4460 Před 7 měsíci +1

    This channel is amazing. your teaching is so on point that I am able to gain lot of confidence.

  • @TejasNesarikar
    @TejasNesarikar Před 10 měsíci +2

    Sir, nicely explained json object and json array😊😊😊 all concept clear of this topic.....

  • @surajkamble3538
    @surajkamble3538 Před 7 měsíci +1

    Sir your are best teacher in the world 🤝💐

  • @user-kc6wj7wr6i
    @user-kc6wj7wr6i Před 6 měsíci +2

    Thanks again for great explanation sir.💯

  • @prasadchavakula8451
    @prasadchavakula8451 Před rokem +2

    Excellent session sir, all of my doubts are cleared now

  • @kapilmishra4667
    @kapilmishra4667 Před rokem +1

    remarkable explaination sir..you made it so simple..cleared my doubts finally..

  • @user-in5wp8yo2i
    @user-in5wp8yo2i Před 6 měsíci +3

    Thank yu Pavan sir.

  • @Lorenzo_786
    @Lorenzo_786 Před 7 měsíci +1

    Great way to lerning 🎉

  • @PradeepPhulse_ed
    @PradeepPhulse_ed Před 7 měsíci +1

    Sir you are not a teacher. You are God 🙏🏻

  • @user-ne3ux3wo4v
    @user-ne3ux3wo4v Před 9 měsíci

    Hi Sir,
    All lectures are enough for experience level?
    Thank you so much sir. Providing API test lecture cleared all doubts.

  • @mohanramakrishnakonijety9405

    Thank you

  • @softwaretestinglearninghub

    this is very helpful, thank you!

  • @Jeyashreesanthosh
    @Jeyashreesanthosh Před rokem

    Thanks for sharing your great knowledge. Very helpful. Pls do video to make a end to end framework for testcase

  • @Rana-Farhan
    @Rana-Farhan Před 10 měsíci

    Awesome explanation ❤

  • @rahulgoyal3287
    @rahulgoyal3287 Před rokem +3

    I have started watching api testing videos.
    But I'm not able find documents except ppt. Please provide drive link or something which contains excel file,pdf file,etc.🙏🙏

  • @b.revathirevathi6919
    @b.revathirevathi6919 Před rokem +1

    Sir can you please do videos in performance testing and mobile testing for beginners

  • @ajitavabasu2157
    @ajitavabasu2157 Před rokem +1

    Sir can we have a session on creating a rest assured framework?

  • @johar369
    @johar369 Před rokem +1

    thank you sir

  • @user-ne3ux3wo4v
    @user-ne3ux3wo4v Před 9 měsíci

    Hi Sir,
    Faker Library are use in current project or not. if used faker library in project any think impact.
    Please tell me.

  • @ksdnsdkumar1375
    @ksdnsdkumar1375 Před rokem

    @4:09 Create package, a class, test method
    BASIC AUTHENTICATION
    @6:00 Declaring Basic Authentication in Given()
    @6:41 Declaring URL in When()
    @7:05 Validate status code in Then()
    @7:28 Gather JSON response for same URL in POSTMAN
    @7:48 Validate JSON response in Then() and print response in console
    @8:41 Execute the test
    DIGEST AUTHENTICATION
    @10:21 Create test method
    @10:39 Declaring Digest Authentication in Given()
    @14:18 Execute the test
    PREEMPTIVE AUTHENTICATION
    @15:09 Declaring Digest Authentication in Given()
    @16:17 Execute the test
    BEARER TOKEN AUTHENTICATION
    @18:34 Create test method
    @19:53 Generate Bearer token from GITHUB account
    @20:47 Use that Bearer Token in POSTMAN & gather JSON response for same URL
    @21:17 Store same Bearer token in variable in same class
    @22:42 Refer that variable and declare Bearer token Authentication in Given()
    @24:33 Declaring same URL in When(), validate status code in Then(), and log response in console.
    @26:07 Execute the test
    OAuth AUTHENTICATION
    @27:23 Create test method
    @28:03 Declare OAuth Authentication
    OAuth2 AUTHENTICATION
    @32:59 Create test method
    @33:25 Declaring OAuth2 Authentication in Given()
    @34:06 Declaring URL in When()
    @35:19 Execute the test
    API KEY AUTHENTICATION
    @36:11 Create test method
    @36:43 Gather API Key from POSTMAN
    @40:13 Declare API Key authentication as query parameter in Given()
    @41:01 Declaring URL in When(), validate status code in Then(), and log response in console. (corretion @42:34)
    @41:42 Execute the test
    @45:24 Declaring subdirectory part of URL as path parameter and query parameter in Given()
    @47:23 Declaring URL domain in When() and referring subdirectory part of URL in Given()
    @48:14 Validate status code in Then(), and log response in console.
    @48:30 Execute the test
    FAKER LIBRARY
    @53:03 Add javafaker dependencies in pom.xml
    @54:39 Create package, a class, test method
    @55:33 Create data using FAKER class
    @1:00:59 Print data in console
    @1:02:39 Execute the test
    EXTRACT DATA FROM JSON OBJECT & JSON ARRAY
    @1:07:01 1st scenario of JSON Object & JSON Array
    @1:11:52 Create object of JSON Object class
    @1:12:45 Accessing JSON array using that object
    @1:13:25 Accessing particular JSON array
    @1:16:00 Accessing particular value in particular JSON array
    @1:17:45 2nd scenario of JSON Object & JSON Array
    @1:19:26 Create object of JSON array class
    @1:19:46 Accessing particular value in particular JSON Object
    @1:21:47 3rd scenario of JSON Object & JSON Array
    @1:23:12 Create object of JSON array class
    @1:23:32 Accessing particular value in nested JSON array of particular JSON Object

  • @shankarraj3433
    @shankarraj3433 Před rokem

    Sir, please make videos on Swagger. We don't know the concepts of Swagger.

  • @chsriramchsriram9492
    @chsriramchsriram9492 Před měsícem

    I have one doubt in API automation

  • @msnikhil2969
    @msnikhil2969 Před 22 dny

    Can u please share the json file of all apis including students, books and employees (json file pdfs)

  • @mvenkatesh3602
    @mvenkatesh3602 Před rokem

    Sir, please classes telugu lo cheyyandii

  • @suruchigarg57
    @suruchigarg57 Před 6 měsíci

    i am getting SSL certificate error. Please help me

  • @AnjanPrasad
    @AnjanPrasad Před rokem

    Hi Sir. .
    Do you think chatGPT will take away testers job

  • @RohanKumar-vc5ii
    @RohanKumar-vc5ii Před 6 měsíci

    Sir, can you share the github link to download this code?

  • @jagsam123
    @jagsam123 Před 2 měsíci

    consumerSecret and tokenSecret spelling need to be correct

  • @shankarraj3433
    @shankarraj3433 Před rokem

    👍