Postman Presentation Theory
Postman Presentation Theory
com
BUG RESISTANCE
API is the
acronym for
Application
Programming
Interface, which is
a software
intermediary that
allows two
applications to talk
to each other.
POSTMAN
BUG RESISTANCE
BUG RESISTANCE
CREATE COLLECTION: Postman Collections are a group of saved requests. Every request you send in Postman appears under
the History tab of the sidebar. On a small scale, reusing requests through the history section is convenient. However, as your Postman usage grows, it can be
time-consuming to find a particular request in your history. Instead of scrolling through your history section, you can save all your requests as a group for easier
access.
BUG RESISTANCE
BUG RESISTANCE
GET : The GET method is used to retrieve information from
the given server using a given URI.
POST : A POST request is used to send data to the server,
GET for example, customer information, file upload etc. using
POST HTML forms.
PUT : PUT is used to send data to a server to create/update
PUT a resource. Replaces all the current representations of the
target resource with the uploaded content.
PATCH
PATCH : PATCH is used to update partial resources. For
instance, when you only need to update one field of the
HEAD resource, Putting a complete resource representation might
be cumbersome and utilizes more bandwidth.
DELETE HEAD : HEAD is almost identical to GET, but without the
response body. HEAD transfers the status line and the header
section only.
DELETE : The DELETE method deletes the specified
resource.
GET Method:
BUG RESISTANCE
POST Method:
BUG RESISTANCE
Environment: A variable is used to store and add parameters in a request, Collection, scripts and so on. An Environment in
Postman comprises a key-value pair. The key in an Environment is known as the Environment variable.
• Select Environment & Create a Name for your environment. Example: we named our environment SQAStudyEnvironment
• Create a variable name which you want to create. Example: we named our variable name BaseUrl
• Enter a initial value, then it will turn into int current value automatically. Example: we enter our initial value https://restful-booker.herokuapp.com
POST Automation method: BUG RESISTANCE
BUG RESISTANCE
Authentication:
BUG RESISTANCE
Put Method step-2:
BUG RESISTANCE
Token Automation Process-1:
BUG RESISTANCE
Token Automation Process-2:
BUG RESISTANCE
Patch:
BUG RESISTANCE
Delete:
BUG RESISTANCE
Inner Response Check :
BUG RESISTANCE
Report Generating
BUG RESISTANCE
THANK YOU
THANK YOU