API Testing

How to integrate Postman with CircleCI?

Reading Time: 4 minutes Hi Readers, In this blog, we will explore Postman with CircleCI. As we know that Postman is an API testing tool and CircleCI is a CI/CD tool so it is the best combination to integrate Postman with CircleCI. Prerequisites Basically, there are some requirements to perform this process- Install Postman into your system:- For Linux- Should have a CircleCI account:- For this, Signup into CircleCI– Continue Reading

API testing & How to perform API testing for POST and GET methods in Cypress

Reading Time: 2 minutes In this blog, you will learn to understand how to perform API testing for GET and POST in cypress with code and output. What is an API? API(Application Programming Interface) In software application (app) development, Although API is the middle layer between the presentation (UI) and the database layer. Above all APIs enable communication and data exchange from one software system to another. What is Continue Reading

How To Run Postman With Environment On Docker

Reading Time: 2 minutes Hello Everyone, basically Today we will learn about how to run collection with the environment on docker using the docker image. Let’s start, the simple prerequisite for this blog is that you have docker installed on your machine. What is Postman? Postman is an API(application programming interface) development tool that helps to build, test, and modify APIs. therefore any functionality that could need by the Continue Reading

Karate DSL and Concourse – How to integrate?

Reading Time: 3 minutes Hi folks, In this short blog, we will see how to integrate Karate DSL having API tests with the concourse. Since CI/CD is a major thing in the software industry now, we need to have our tests integrated with the CI/CD pipeline that we are using in our respective projects. This blog is all about integrating Karate with Concourse CI. So, let’s begin. Setting up Continue Reading

Monitor API Collections in Postman

Reading Time: 3 minutes Hello Everyone! In this blog, we will talk about monitoring your APIs via Postman. Let’s assume you have some production in point that has to always be up and running. So, you cannot go to the postman all the time and even not run the collection to make sure that all the things are up and running. For that reason, the postman has one inbuilt Continue Reading

Execute postman collection with docker-compose

Reading Time: 3 minutes Hello Everyone, Today we will go through with one interesting integration provided by Postman i.e run your collection using Docker. In this, we can see how we can integrate your postman API request and run it from a docker container. Let’s start, the simple prerequisite for this blog is that you have docker installed in your machine. What is Docker? Docker is a container system Continue Reading

Test trends at this juncture

Reading Time: 3 minutes Covid-19 has only accelerated digital transformation, causing everyone to start porting things over to apps and software as the only way to interact with customers.This, in turn, has increased the amount of software testing needed. Here are the  top test trends at this juncture predictions. Mobile automation Using smartphones has already become an inevitable part of the lives of most people. We use dozens of Continue Reading

BDD framework with Rest -assured + cucumber using scala and sbt

Reading Time: 4 minutes Hi all , here we are going to develop a BDD framework for automating our Rest API’s with the help of rest assured and cucumber using scala and sbt build tool. REST assured DSL already provides a BDD style writing of tests in the Given , When and Then format , but still if you want to know what scenarios are covered , you still Continue Reading

Integration of Postman with CI/CD tool- CircleCI

Reading Time: 3 minutes What is CircleCI– CircleCI is a modern continuous integration and continuous delivery (CI/CD) platform. The CircleCI Enterprise solution is installable inside your private cloud or data center and is free to try for a limited time. CircleCI automates the build, test, and deployment of Software. From this above diagram, we came to know that after the test/code on GitHub is authorized and added as a Continue Reading

Mock Servers in Postman

Reading Time: 4 minutes If we do not have a production API ready, or you do not want to run your requests against actual data,we can make requests that return mock data defined within Postman . By introducing a mock servers and adding examples to our requests, we can reproduce the behaviour of a real API. Basically Postman matches the request configurations to the examples we saved with request Continue Reading

Data driven testing using karate DSL

Reading Time: 3 minutes In the previous blog, we saw that we can integrate our test cases with Jenkins. Now, in this blog, we will see how we can achieve data-driven testing using karate DSL. What is DDT? DDT or data-driven testing is an technique in which we read the data from a table or an excel sheet or a CSV file (or any external file), and take them Continue Reading

karate DSL : POST and GET API calls

Reading Time: 3 minutes In the previous blog, we saw how we can set up a project in karate DSL and saw the folder structure in this blog we will see how to make POST and GET API calls and how it can be automated using karate DSL. First, we need to create a .feature file where we will write our test cases. We have already seen the file Continue Reading

Automate your API Test Cases Using REST-ASSURED

Reading Time: 5 minutes Here, we’ll discuss about how can we automate our testing of RESTful webservices using REST ASSURED Never used Rest-Assured before? That’s not a problem because today I’ll explain right from the scratch. As a result, that beginners can also start their journey of testing APIs using Rest-Assured Today we’ll cover following topics: What is Rest Assured? How does it works? How to create or setup Continue Reading