Top Jenkins Plugins

Jenkins is one of the best continuous integration (CI) servers you can find. Jenkins has almost one and a half thousand plugins available for downloading, which allow you to solve any kind of problem you might ever encounter during deployment, development or testing Performance Metrics Analysis Plugins As […]

Jenkins Declarative Pipeline

Jenkins provides you with two ways of developing your pipeline code: Scripted and Declarative. Scripted pipelines, also known as “traditional” pipelines, are based on Groovy as their Domain-specific language. On the other hand, Declarative pipelines provide a simplified and more friendly syntax with specific statements for defining them, without needing to […]

Jenkins Scripted Pipeline

Jenkins is an open source continuous integration server that provides the ability to continuously perform automated builds and tests. Several tasks can be controlled and monitored by Jenkins, including pulling code from a repository, performing static code analysis, building your project, executing unit tests, automated tests and/or performance […]

Jenkins Pipeline

What is Jenkins Pipeline? In Jenkins, a pipeline is a group of events or jobs which are interlinked with one another in a sequence. In simple words, Jenkins Pipeline is a combination of plugins that support the integration and implementation of continuous delivery pipelines using Jenkins. A pipeline […]

API Testing using JMeter

The Representational State Transfer (REST) uses the HTTP request method, and the most popular are GET, POST, PUT and DELETE. Responses to these requests return status codes indicating success or failure as well as any applicable headers, and JSON representing the affected fields (or nothing) in the message […]

REST API Testing

An API or Application Programming Interface is a set of programming instructions for accessing a web-based software application. In other words, a set of commands used by an individual program to communicate with one another directly and use each other’s functions to get information. Rest stands for Representational […]

Introduction to Gherkins

Gherkin is a line-oriented language that uses indentation to define structure. Line endings terminate statements (called steps) and either spaces or tabs may be used for indentation. It is a domain specific language which helps you to describe business behavior without the need to go into detail of […]

API Testing with POSTMAN

What is Postman? Postman is a popular API client that makes it easy for developers to create, share, test and document APIs. This is done by allowing users to create and save simple and complex HTTP/s requests, as well as read their responses. The result – more efficient […]

Best Practices for API Testing

API stands for Application Programming Interface which is a set of routines, protocols, and tools that connects an application to the web or to other APIs. A routine, also known as a procedure, function or subroutine, is a program that performs a particular task. A protocol is a […]

How to install Jenkins

Jenkins  is an open source automation server written in Java. Jenkins helps to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery. Jenkins is an open source framework for continuous integration, continuous deployment and test automation. we can install […]