Hi Rahul, I would like to thank you whole heartedly as I got selected for a job after going this video on API testing. First few questions itself were good enough to crack the interview and display confidence. Once again many thanks.
00:42 Challenges 07:03 Authentication 8:28 API is the best form for automation 10:34 REST API 11:19 Verify in API testing 13:53 Path and Query Parameters 15:17 HTTP request core components 18:09 HTTP Methods for below API Scenario? Get or Post? 21:13 API and UI testing differences 22:19 What protocol is used by the RESTFUL Web Services? 22:47 What are SOAP Web Services? 24:08 How do we Represent a Resource in REST? 24:48 Can you use GET instead of PUT to create a resource? 26:11 Can you use POST instead of PUT to create a resource? 27:19 Payload 28:08 Path and Query parameters in request Endpoint 29:04 What is REST Assured? 29:53 How would we define API details in Rest Assured Automation? 30:54 What is JSON Serialization & Deserialization in Rest Assured? 33:31 JSON Parsing Techniques in Rest Assured Automation. 34:37 Send attachment to API using rest Assured Test. 35:45 Status Codes and their descriptions
The interviewer may also ask you about tokens, types of tokens (SWT, SAML, JWT). Besides, he may ask you to define the JSON structure format. It looks like a 'key value' structure type. And REST is not a protocol. It's is a software architectural style.
Q-13: Can we use POST request instead of PUT to create a resource ? Your answer is Wrong. We can not. While post we do not require to specific about the index or on which resource we have to do a update operation where are in POST a new resource gets created with ID auto-generated. Requesting you to modify the answer on video 26:41
Hello Rahul, I have completed your entire course on Udemy. It was a great course and helped me learn the topic in depth. But, I did not find Digest authentication in the course. Could you pls explain the concept of digest authentication with an example?
Hello, Rahul Great I have enrolled in your course a few days back getting interested in API more. Q. Will the interviewer asks to write a code also? If giving an automation interview. Like for selenium interviews they ask.
I am learning a lots from your TH-cam and Udemy videos ,such a wonderful instructor you are, as I am from non it background and clearing my doubts from all of your s videos.
If we use POST instead of PUT then it will create a new record then my intention was to update the existing data, now how POST was used in place of PUT.
POST we can not use as a PUT. If server allows and that id is not present in the DB then only PUT create new record. Otherwise PUT is used to update the existing record.
@18.50 , I feel it's wrong , even a get call can also have a request body. A request which does not have a request body as called a head call and an api call which has payload also is called get call.
Hi Rahul, I have completed your RestAssured course on Udemy, I am not sure if database access and verification is covered there. Could you create a tutorial on that ?
Not sure if i am correct but as per my understanding POST & PUT are different POST will create a new entry to db, where PUT will update existing entry from db with new fields or passed information.
POST is super set of all the method except get..you can use both post and put to update..means you can use post for creating and to update also but cannot use put for creating.. anyways it depends how developer used this if he used post to update as well then we can use post..but developer cannot use put for creating
Hello Rahul, I hope you are doing great, just want to give few suggestion to you like if you really invest time to create such video for benefit for the student then at least you should reply there doubt I have been try to in touch with you for many of my query for the respective training of yours, being paid student of your it's very hard to connect you than what about others. Please think a bit as you're in the industry where word mouth publicity from a student is very much needed.
Hi Rahul. I have a test case where I have to take a screenshot after every click and store the screenshot in a Word document for documentation purposes. Please make a video on this.
Thanks Rahul sir for providing us information for Rest api. I am regular viewer of your Videos. I have a query if you can guide me in this. Actually i need to test an application in which i need to get the records/orders for like iphone in last 1 min using Rest api. SO how can i achieve it.
Hello Rahul, I have taken up you Rest Assured API training in Udemy. It is very helpful. The way you have started with Rest Assured and extended it to Cucumber is very good. Since serenity BDD is good in reporting part, Do you have any plans to add up API testing with Serenity + Cucumber ?
Two months back I purchased, Rahul Shetty's QA Automation course on Udemy and it is here uploaded for free to watch. This is not fair. The Udemy course should also be made free and money should be refunded to those who bought after these videos were uploaded.
Can't we send request in xml format in API's, as you mention different between soap and rest api that request type is xml and respectively which is not correct as rest api's also support xml's, form-data and jason
1st and 2nd question answers are not matched. in 1st,POST is to create data but in 2nd POST is mentioned as add to existing object. Can you please clarity me??
Contract documents where all the details are mentioned like base Uri ,parameters details http methods details , Jason format for req and Res,authentication details and credentials for authentications ,endpoints details etc..
Hi, Can you create katalon studio API testing. Beginner to advanced level sir.now a days it's a popular tool in the market.most of the product based companies using it.
oh my god..... i watched ur this video b4 my interview...and u know what i cleared it..thank u so muchhh..
Hi Rahul, I would like to thank you whole heartedly as I got selected for a job after going this video on API testing. First few questions itself were good enough to crack the interview and display confidence. Once again many thanks.
I have never seen such a clear explanation of any teaching video on api testing.. Plzz do more
00:42 Challenges
07:03 Authentication
8:28 API is the best form for automation
10:34 REST API
11:19 Verify in API testing
13:53 Path and Query Parameters
15:17 HTTP request core components
18:09 HTTP Methods for below API Scenario? Get or Post?
21:13 API and UI testing differences
22:19 What protocol is used by the RESTFUL Web Services?
22:47 What are SOAP Web Services?
24:08 How do we Represent a Resource in REST?
24:48 Can you use GET instead of PUT to create a resource?
26:11 Can you use POST instead of PUT to create a resource?
27:19 Payload
28:08 Path and Query parameters in request Endpoint
29:04 What is REST Assured?
29:53 How would we define API details in Rest Assured Automation?
30:54 What is JSON Serialization & Deserialization in Rest Assured?
33:31 JSON Parsing Techniques in Rest Assured Automation.
34:37 Send attachment to API using rest Assured Test.
35:45 Status Codes and their descriptions
😊
The interviewer may also ask you about tokens, types of tokens (SWT, SAML, JWT). Besides, he may ask you to define the JSON structure format. It looks like a 'key value' structure type. And REST is not a protocol. It's is a software architectural style.
perfect :)
Q-13: Can we use POST request instead of PUT to create a resource ? Your answer is Wrong. We can not. While post we do not require to specific about the index or on which resource we have to do a update operation where are in POST a new resource gets created with ID auto-generated. Requesting you to modify the answer on video 26:41
This is best video on youtube for api testing interview questions. Your explanation is awesome
The way you explain is awesome. We can see and hear your explanation which make easy to understand and to remember as well. Thank you so much!
Hello Rahul,
I have completed your entire course on Udemy. It was a great course and helped me learn the topic in depth. But, I did not find Digest authentication in the course. Could you pls explain the concept of digest authentication with an example?
Digest Authentication is advance version of Basic auth, Username and password that is passed to the server are in encrypted form.
This is best video on youtube on api testing interview questions. You explanation is awesome. Anyone can crack interviews easily.
Hello, Rahul Great I have enrolled in your course a few days back getting interested in API more.
Q. Will the interviewer asks to write a code also? If giving an automation interview. Like for selenium interviews they ask.
Have u got The study material and interview questions
Thank you so much Rahul. This has be very useful for my interview and you have great teaching skills.
I am learning a lots from your TH-cam and Udemy videos ,such a wonderful instructor you are, as I am from non it background and clearing my doubts from all of your s videos.
I was asked a question in interview - "In Rest assured, how to handle async APIs?" Please help me with the answer.
We can mange using promises .
Thanks Rahul Explaination is vary clear and precise i was searching interview questions i can say this is best video i got
Thanks for sharing
If we use POST instead of PUT then it will create a new record then my intention was to update the existing data, now how POST was used in place of PUT.
POST we can not use as a PUT. If server allows and that id is not present in the DB then only PUT create new record. Otherwise PUT is used to update the existing record.
@18.50 , I feel it's wrong , even a get call can also have a request body.
A request which does not have a request body as called a head call and an api call which has payload also is called get call.
Hi Rahul,
I have completed your RestAssured course on Udemy, I am not sure if database access and verification is covered there. Could you create a tutorial on that ?
Hi Pooja in which organisation you are working
Hello Rahu, I really love your talent and the way you teaches. Please do you have any video for CONFLUENCE training?
Thanks Rahul sir ....u r always wonderful at your explanation...I m one of u r student at Udemy .
Not sure if i am correct but as per my understanding POST & PUT are different POST will create a new entry to db, where PUT will update existing entry from db with new fields or passed information.
POST is super set of all the method except get..you can use both post and put to update..means you can use post for creating and to update also but cannot use put for creating.. anyways it depends how developer used this if he used post to update as well then we can use post..but developer cannot use put for creating
@@amitclick99 thanks for sharing your knowledge
Mr. Rahul Shetty has made many careers !
Excellent video sir...Its very clear and useful for the interview preparations. Please post some videos for POSTMAN as well.
Hello Rahul, This video is very useful for me as well as all.
Thanks so much. It has very much clear information.
Hello Rahul, I hope you are doing great, just want to give few suggestion to you like if you really invest time to create such video for benefit for the student then at least you should reply there doubt I have been try to in touch with you for many of my query for the respective training of yours, being paid student of your it's very hard to connect you than what about others. Please think a bit as you're in the industry where word mouth publicity from a student is very much needed.
Thank you so much Rahul Sir,, however can we have word format for these questions so easy for to read back to back insted listen
Hi Rahul. I have a test case where I have to take a screenshot after every click and store the screenshot in a Word document for documentation purposes. Please make a video on this.
Thanks Rahul sir for providing us information for Rest api. I am regular viewer of your Videos. I have a query if you can guide me in this. Actually i need to test an application in which i need to get the records/orders for like iphone in last 1 min using Rest api. SO how can i achieve it.
Which course is best to learn API testing by @ Rahul shetty sir
Hi Rahul, I have used request body in get method.
Hi Rahul, Could you please make one video for MySQL interview questions?
RAHUL SIR PLEASE MAKE VIDEO ON MYSQL INTERVIEW QUESTIONS WITH COMPLEX PROBLEMS
Awesome. Thank you for sharing this video.
Thank you very much! I’ve learned a lot from your video.
hi Rahul can you suggest any mini project on API testing. links to practice and get knowledge practically
diffrence between put and patch method is also common interview question.
I bought this Rest API course.
@archita : right
Thanks for your work! Well done!
Thank you Rahul for the quick guide. It will be definitely helpful.
request can be sent as both json or xml in rest api but it is necessary to have request only in xml format in soap
Hello Rahul, I have taken up you Rest Assured API training in Udemy. It is very helpful. The way you have started with Rest Assured and extended it to Cucumber is very good. Since serenity BDD is good in reporting part, Do you have any plans to add up API testing with Serenity + Cucumber ?
Do you have attended any Rest API interview yet? just wanted to know is that Udemy course enough to crack interview.
Please reply
thanks it helps actually .
Thank You Rahul Sir that was amazing refreshing session. Now I'm confident for my interview.
same reason im here. you get a offer?
@@lilchief2823 yes
Thanks Sir for created this video , clearly explained all the questions. I have revised my api learnings.
Very informative and helpful video sir
Thank You.. Your Video Help me.
Thank you very much Mr Rahul
Extremely helpful thank you
Hi Rahul thanku soo much for this useful overview thanks a lot
GREAT VIDEO!!! Thank you!!! :)
Hello Rahul, very nice explanation. Thanks a lot.
Could you please share the document
1. How to maintina cookei based authtentication session
2. if the cookie is expired how to increase the cookie expiry time
Best questions 👍👍
Sir plz give the link for the API authentication techniques video
Two months back I purchased, Rahul Shetty's QA Automation course on Udemy and it is here uploaded for free to watch. This is not fair. The Udemy course should also be made free and money should be refunded to those who bought after these videos were uploaded.
Hello sir..can u share me the link of automation with java course?i want to learn automation testing so pls suggest me which course of urs is better?
Great initiative. Thanks a ton
is header is compulsory for api request ?
Thanks Rahul .. it helped me a lot to attend the interview.
difference between authorization and authentication.which happens first?in api?
Hello sir.. Please upload videos on playwright Automtion tool
very cool refreshing, thank you
Hi rahul can you please provide selenium with automation full course basics to high level
Rahul why I can;t find any Authentication lecture in your SoapUI Course?
Hi Rahul I am unable to create api test in uft 14.51 .... I have concurrent license still it is asking for license
Thank you so much💐💐💐💐
Hi sir can u pls make video on selenium interview questions for experienced pls...
Please provide the link for pdf of all these questions.
Very informative video, thank you!
thankyou so muc sir
😍😍😍😍😍😍😍
can you upload these interview questions in word document or PDF file so we can print it for our study.
It was indeed useful. Thanks
these are amazing ! ! !
how can I download them ?
How can I access this document to prepare for interviews
Very useful..thank u
You forgot to say put is idempotent which is more important
please can you explain how to validate elements with Api.?
Is this for developer or tester ? Pls tell
Tester
Thank you for your efforts!
Thank you so so much .....
Please share mobile application testing interview questions
HI Rahul--> I need to learn LISA tool testing
Can't we send request in xml format in API's, as you mention different between soap and rest api that request type is xml and respectively which is not correct as rest api's also support xml's, form-data and jason
it was very useful. thank you
You are awesome. Thankyou!
Too good.,thank you
1st and 2nd question answers are not matched. in 1st,POST is to create data but in 2nd POST is mentioned as add to existing object.
Can you please clarity me??
Thanks Rahul
So enjoyed this
Can u plz attach this word document here ?
Nice
Thanks for the video Sir :-)
Rahul I am in one of your udemy classes, I lost your email information to send you questions. Can you tell me where to find that again?
Thank you.
helpful
What is the requirement document for a API testing?
Contract documents where all the details are mentioned like base Uri ,parameters details http methods details , Jason format for req and Res,authentication details and credentials for authentications ,endpoints details etc..
Where can i find this document rahul sir?
Hi, Can you create katalon studio API testing. Beginner to advanced level sir.now a days it's a popular tool in the market.most of the product based companies using it.
Hi Rahul, how to get this API testing interview questions?
Watch it and type it in word or anywhere u want
Can you will attached this file in description?