Selenium WebDriver – How To Automate Charts And Graphs Validation

Overview: Automated validation of Charts & Graphs is one of the biggest challenges in test automation. In our application, We have tons of charts. I would show you how I have automated that to give you some idea. Ocular: I would be using Ocular – the image validation library! In fact, I created this Ocular lib just for this purpose! […]

JMeter – How To Add Grafana Real Time Results In Jenkins Build Description

Overview: Testautomationguru already has released few detailed articles on creating real time results during Performance Testing. If you have not read them before, I would suggest you to check them out first. JMeter Real Time Results – Basic Setup JMeter Real Time Results – Advanced Setup for multiple projects JMeter – Server Performance Monitoring JMeter

JMeter – How To Add Grafana Real Time Results In Jenkins Build DescriptionRead More »

Selenium WebDriver – How To Execute Tests In Multiple Environments

Overview: I have been running thousands of automated regression test cases in multiple test environments for years. As part of CI / CD pipeline, I run the tests in QA, UAT, Staging and PROD. In this article, I would like to show you the approach I follow to make the tests run on any given test

Selenium WebDriver – How To Execute Tests In Multiple EnvironmentsRead More »

Selenium WebDriver – How To Find Broken Links On a Page

Overview: In this article, we will see how we could use Selenium WebDriver to find broken links on a webpage. Utility Class: To demonstrate how it works, I would be using below simple utility. This below method simply returns the HTTP response code the given URL. public class LinkUtil { // hits the given url and

Selenium WebDriver – How To Find Broken Links On a PageRead More »

Selenium WebDriver – Creating A Simple Keyword-Driven Framework Using Java Lambdas

Overview: In this article, I would like to show you a simple keyword-driven framework using Java8. Please do note that this article will not cover all the possible keywords. My aim here is  just to give you an idea how we could use Java – lambdas. Java 8: Java-8 has introduced a lot of cool

Selenium WebDriver – Creating A Simple Keyword-Driven Framework Using Java LambdasRead More »