Category: Jenkins

UFT Integration with Jenkins

CI-CD Pipeline implementation of the Continuous Integration/Continuous Deployment software is the backbone of the modern DevOps environment. Most of the organization using DevOps practices and using Jenkins. Jenkins is a open source CI tool which can be used to execute the UFT tests. Jenkins is a Continuous Integration tool which […]

JMeter Test Data Control Using Redis

JMeter is most popular and open source tool for performance testing ,but there still some scenarios where we need to look for solution for the features which is not supported by JMeter, One of such scenario, imagine that you’ve got an application that you want to performance test, […]

How to use Selenium Grid with Jenkins

Selenium Grid is a powerful tool for testing web applications across browsers and operating systems, but incorporating it into a Continuous Integration pipeline can be frustrating. Integrating the Grid with a CI/CD server is complex, and a misstep during setup can lead to unreliable test errors, and down […]

How to setup Jenkins Master-Slaves

Jenkins is a cross-platform, continuous integration and continuous delivery application that can be used to build and test your software projects continuously making it easier for developers to integrate changes to the project and making it easier for users to obtain a fresh build, which in turn increases […]

How to run JMeter scripts in 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. As performance testers, we contribute to our development team by easing the execution of performance tests. […]

How Run Selenium Tests in Jenkins Using Maven

Jenkins is the leading open-source continuous integration tool developed by Hudson lab. It is cross-platform and can be used on Windows, Linux, Mac OS and Solaris environments. Jenkins is written in Java.it has taken the place as one of the best open-source tools that allow continuous integration and […]

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