API Testing Interview Questions and Answers| 3+ YOE

  Рет қаралды 41,515

RD Automation Learning

RD Automation Learning

Күн бұрын

This video is useful for interview preparation of manual testing for freshers:
software testing,software development life cycle,manual testing,manual testing interview questions and answers for experienced,manual testing interview questions,manual testing interview questions and answers for freshers,interview questions manual testing,manual testing interview questions sdet,Manual Testing Interview Questions for Freshers,mock interview manual testing,RD Automation Learning,manual testing interview questions for 5 years
#SoftwareTestingInterview #SoftwareTestingMockInterview #MockInterview
This Video is helpful for people who are looking for :
Testing interview questions and answers
Testing technical interview questions and answers
Testing Telephonic Interview
Testing online interview
Testing java Interview Questions
Testing interview questions
Testing interview questions for freshers
Testing interview india
Testing interview experience
Testing interview questions for experienced
Testing interview questions for automation testing
Testing automation testing interview questions
Testing interview experience
Testing interview questions and answers for freshers
Testing interview questions geeksforgeeks
In this manual testing mock interview, you will learn how to tackle manual testing interview questions and answers for freshers. I will be interviewing one of my KZbin subscribers who is fresher and looking for job into software testing. I will also be explaining the software testing interview questions and answers for freshers or 0-1 years experience along with tips and tricks to handle software testing interviews.
Watch this software testing mock interview video and get understanding about software testing interviews and types of questions asked in software testing interviews.
Testing qa automation interview questions
Testing interview process quora
Testing interview experience quora
Testing mock interview
Testing selenium interview questions
Testing selenium interview questions for experienced

Пікірлер: 37
@HimaBinduT-pv6bz
@HimaBinduT-pv6bz 3 ай бұрын
POST is used to create new reource in the server. For your question, If we hit the same request 10 times, first time the reource will get create with an id. next time onwards , it throws 422 status- Unprocessed entity. Message says like , "The reource has already been taken". because we are sending the request with same payload everytime.
@shilpamishra3889
@shilpamishra3889 2 ай бұрын
post- it is used to create/add new resource. put - it is used to update the existing resource. if we hit same post request multiple times, it will show "429 too many requests" status.
@philomanbabuperam
@philomanbabuperam Жыл бұрын
Good Questions and Nice Answers.....:)
@vijaypote9621
@vijaypote9621 11 ай бұрын
hitting post request in concurrent manner post creat resource every time put not create resource everytime post used for insert data & put is used to update data or if not data is there then create one data
@991tanmay
@991tanmay 11 ай бұрын
Hello Sir, Your videos are really helpful Thanks a lot for that. For the question you asked what if we hit POST multiple times with same data(body). The ans is it will create 10 requests and it will give different "id" each time.
@subhashinichittemreddy8845
@subhashinichittemreddy8845 9 ай бұрын
Yes. No worries about that. That changes every hits. That's not wrong in that
@medhabhat1
@medhabhat1 4 ай бұрын
POST is not impodent - it mean everytime i hit the request, new resource will be created but in case of PUT, its not same case
@ishuishu3149
@ishuishu3149 6 ай бұрын
What is collection What is payload Validation in postman Http code 404 not found Integration with Jenkins IllegalstateException Different variables
@aarthi19
@aarthi19 10 ай бұрын
Hello sir I want the api interview questions can you please share with your channel for reference purpose
@hemantjadhav1176
@hemantjadhav1176 4 ай бұрын
Hi sir, If we hit POST request on 10 times by usng diff test data we will get diff output
@tejareddy5801
@tejareddy5801 7 ай бұрын
Gitlab also best ci cd tool
@testingic2141
@testingic2141 Жыл бұрын
@RD Automation Learning Please provide answer to that question- " how do you validate test Coverage"?
@SantoshKumar-ci6tl
@SantoshKumar-ci6tl 10 ай бұрын
IllegalStateException exception
@sabkaBaap007
@sabkaBaap007 11 ай бұрын
Sir close to three years of experience h industry me and I've worked in automation testing projects from the beginning, I've worked in ui testing automation projects, mobile application testing automation protect and currently in api testing automation project. I'm working in an MNC but I feel that my pay is less as per the market standards based on my contribution in the team and my knowledge. I'm trying for a swtich but I don't even get an opportunity for interviews. I don't know why. Can you let me know what can be done in this situation?
@srikantkonda2394
@srikantkonda2394 Жыл бұрын
Hi sir..... whenever we get the GET request requirement and we are hitting the POST request instead of GET request the status code should be 405 ... In a video it's was showing 404 ..so that's wrong and it is defect....Sir please reply me whether this is correct or not..
@narjatechnologies
@narjatechnologies Жыл бұрын
HTTP status code 405 is generally considered the best practice to indicate that a requested method is not allowed on an API endpoint. However, the specific handling of this scenario depends on the API developer's design and requirements. If you mistakenly use a POST request on an endpoint that should only accept GET requests, and you receive a 404 status code instead of 405, it may not be considered a best practice. In such cases, you can log a low-priority bug report to address this issue.
@shanukhan-ud9gg
@shanukhan-ud9gg Жыл бұрын
Post is non-idempotent, it means, even if we send the request with the same data, it'll create a new resource. While in case of put, it'll check if the resource is already created, then it'll not create the new one. if there is any change in the body, then it'll update
@jyothireddykonduru
@jyothireddykonduru Жыл бұрын
what is the meaning of POST non-idempotent? And what about Other http methods?
@shanukhan-ud9gg
@shanukhan-ud9gg Жыл бұрын
Idempotent means it’ll have no impact if with the same body, multiple requests are posted. Put is idempotent, it’ll update the data if there is any change in the body content. Whereas POST as the name suggest, post means after. So, it’ll keep on adding the new resource even if the body of the request remains similar
@anikaraisa1844
@anikaraisa1844 Жыл бұрын
@@shanukhan-ud9gg so lets say the POST API is for creating new login credentials (uid and password), then how can it create same login multiple times with the same credentials? Can you please help?
@shanukhan-ud9gg
@shanukhan-ud9gg Жыл бұрын
@@anikaraisa1844 yes, so the above which i've mentioned is in a generic context. while the behavior largely depends on the design and implementation of the API. Eg 1: Intentional Duplication -> based on the business requirement, the API might intentionally allow the creation of multiple user accounts with the same login credentials Eg 2: No Deduplication Logic: The API might not have a deduplication mechanism in place to prevent the creation of multiple accounts with the same credentials, even if the credentials are the same.
@shanukhan-ud9gg
@shanukhan-ud9gg Жыл бұрын
@@anikaraisa1844 what i mean is, these are just the generic statements, the implementation is totally based on the business requirements and how the developer is implementing them
@Forty3Stories
@Forty3Stories Жыл бұрын
@5:53 wrong content type may return 4XX error code but will RestAssured throw an exception?
@venkeysamantula3365
@venkeysamantula3365 Жыл бұрын
I think rest assured will throw exception as a status code of 500 it means server doesn't know how to handle the request.
@sabkaBaap007
@sabkaBaap007 11 ай бұрын
It won't throw any exception and as you said the response would be 4xx and to be precise it would be 400 or 415
@fitwithAnany
@fitwithAnany 5 ай бұрын
Assertion Exception will through when we give the wrong content
@user-de1we4bc4c
@user-de1we4bc4c Жыл бұрын
because the get request data may be deleted because of that reason it gives this status 404
@beingkind3610
@beingkind3610 Жыл бұрын
Yes, whenever the request made to database via server and if the data is deleted or not available then it throws 404.
@DhirajBhosale-yh2ko
@DhirajBhosale-yh2ko Ай бұрын
415-Unsupported media type for wrong content type
@moodoffbhubaneswar5486
@moodoffbhubaneswar5486 11 ай бұрын
noned
@ravindersanjay
@ravindersanjay 11 ай бұрын
When a POST request is triggered multiple times in Postman tool, the following things will happen: The request will be sent to the server multiple times. The server will process the request each time it is received. The server will return a response for each request. The responses will be stored in the Postman history. You can view the responses in the Postman history. If the request is successful, the response will have a status code of 200. If the request is unsuccessful, the response will have a different status code, such as 400, 401, or 403. You can also use Postman to set up a collection runner to run the request multiple times automatically. The collection runner will allow you to specify the number of times the request should be run, as well as the delay between each request. Here are some of the things to keep in mind when triggering a POST request multiple times in Postman: The server may have a limit on the number of requests that can be sent per second. The server may also have a limit on the number of requests that can be sent from the same IP address. If you are sending a lot of requests, you may need to throttle the requests to avoid overloading the server.
@Lokesh.Mittal
@Lokesh.Mittal 7 ай бұрын
very well explained, thank you
@AbhishekChauhan-ux9yq
@AbhishekChauhan-ux9yq 6 ай бұрын
Wow...well explained 🙌
@ishuishu3149
@ishuishu3149 6 ай бұрын
It depends on how the server is designed to handle the post request. It may create new request, modifies the existing data or server may not create new data knowing it’s a duplicate request.
@ravindersanjay
@ravindersanjay 11 ай бұрын
Rest Assured will throw an IllegalStateException exception when we pass a wrong content type. The error message will be: Cannot parse object because no supported Content-Type was specified in response. Content-Type was 'text/html;charset=ISO-8859-1'
Automation Testing Interview Questions | Java Interview Questions
27:12
RD Automation Learning
Рет қаралды 15 М.
How To Explain Selenium Automation Framework In Interviews
12:03
RD Automation Learning
Рет қаралды 191 М.
A teacher captured the cutest moment at the nursery #shorts
00:33
Fabiosa Stories
Рет қаралды 52 МЛН
Каха заблудился в горах
00:57
К-Media
Рет қаралды 9 МЛН
Automation Testing Interview Questions | Java Testing Interview Q&A
27:46
RD Automation Learning
Рет қаралды 15 М.
Top 25 API Testing Interview Questions & Answers | Rahul Shetty
48:13
Rahul Shetty Academy
Рет қаралды 492 М.
API Testing Interview Questions and Answers| 3+ YOE
30:58
RD Automation Learning
Рет қаралды 49 М.
A teacher captured the cutest moment at the nursery #shorts
00:33
Fabiosa Stories
Рет қаралды 52 МЛН