Katalon Studio API Testing #2 – Installing Katalon Studio on Windows

In this Katalon Studio API testing tutorial we will learn how to install Katalon Studio on your windows OS before you can start your API testing using Katalon Studio.

Katalon Studio API Testing #1 – Introduction and Download Katalon

In this Katalon Studio API testing tutorial we will understand the basics of Katalon Studio and then provide step by step guidance to sign up and download Katalon Studio.

TestNG Tutorial #20 – How to Manage Dependency Between Test Cases

In this TestNG tutorial we will learn how to manage Dependency Between Test Cases.

In some scenarios, you might need your test methods to be invoked in specific order. For example, you want to ensure some of the tests are completed and successful before launching other tests. TestNG dependencies help you in achieving this behavior.

TestNG allows you to specify dependencies either with annotations or in XML. To manage dependencies with annotations, you can use the attributes dependsOnMethods or dependsOnGroups, found on the @Test annotation.

There are two kinds of dependencies:

✅ Hard dependencies

✅ Soft dependencies

TestNG Tutorial #19 – TestNG Report Generation in Selenium | Part 2

In this TestNG tutorial we will learn how to setup ReportNG plugin for TestNG Report generation in Selenium WebDriver. This is part 2 of the two part report generation in TestNG tutorial series.

As we have seen in previous tutorial that the default report in TestNG does not provide a neat layout so we can use ReportNG plugin to get a better looking report for our TestNG test cases.

This tutorial will explain how you can install ReportNG plugin and then configure it to get custom reports in TestNG

TestNG Tutorial #18 – TestNG Report Generation in Selenium | Part 1

In this TestNG tutorial we will learn how to setup TestNG Report generation in Selenium WebDriver. This is part 1 of the two part report generation in TestNG tutorial series.

TestNG provides default report which is generated when ever you execute your tests using TestNG framework. We will learn how you can use this report and also do some customization’s int this report.