Month: May 2019

Run Apache JMeter load tests with Azure DevOps

DevOps is a practice that unifies people, process and technology across development and IT in five core practices: planning and tracking, development, build and test, delivery and monitoring and operations. When practicing DevOps, development, IT operations, quality engineering and security teams work closely together—breaking down practices that were […]

Testing SOAP/REST Web Services Using JMeter

SOAP is a messaging protocol specification for exchanging structured information in the implementation of web services. Its purpose is to induce extensibility, neutrality, and independence. It uses XML Information Set for its message format and relies on application layer protocols. SOAP is used in a variety of messaging systems. […]

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

Jenkins Pipeline In Jenkins, a pipeline is a group of events or jobs which are interlinked with one another in a sequence. Jenkins pipeline is a way to define your build process, continuous integration, and continuous delivery (CI/CD) workflows as code. It allows you to script and automate […]

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 […]