List Of JUnit Annotations: JUnit 4 Vs JUnit 5

JUnit Annotations

This Tutorial Explains all about JUnit Annotations along with a Comparison of Annotations in JUnit 4 vs JUnit 5: We learned the different ways to execute JUnit test cases and saw how to create and execute a test suite in our previous tutorial. In this tutorial, we will get to …

Read more


Multiple Ways To Execute JUnit Tests

Multiple Ways to Execute JUnit Tests

This Tutorial shows Multiple ways of Executing JUnit tests such as Running as a JUnit Test, Using Shortcut Keys, or Run JUnit Test from Command-Line, etc: We saw how to write the basic JUnit test cases and have a test fixture approach as one of the good programming practices for …

Read more


What Is A JUnit Test Fixture: Tutorial With JUnit 4 Examples

Junit Test Fixture

This Tutorial will explain When, Why, and How to use JUnit Test Fixture with simple JUnit Test Fixture Examples for your Easy Understanding of the Concept: We will learn – => Check ALL JUnit Tutorials Here. JUnit Test Fixture When there are multiple test cases in a JUnit class, there …

Read more


JUnit Tests: How To Write JUnit Test Cases With Examples

JUnit Test

This JUnit Tests Tutorial will focus on how to Write JUnit Tests in Eclipse, Test Output, and JUnit 4 Test Case Example in Java Eclipse: We will cover the following topics: The navigational workflow of creating a test case in Eclipse. How does an auto-created basic template of JUnit test …

Read more


Download, Install And Configure JUnit In Eclipse

Setting up JUnit in Eclipse

This Tutorial Explains How To Download, Install, and Configure JUnit in Eclipse. It includes Setting up Environment Variables, JUnit 5 Architecture & Setup: As JUnit is a framework for Java, it needs to be installed before JUnit installation. Also, download eclipse.exe on your system to get Eclipse working prior to …

Read more


JUnit Tutorial For Beginners – What Is JUnit Testing

JUnit

This JUnit Tutorial for Beginners explains what is Unit Testing, Test Coverage and What is JUnit Testing Framework along with Examples of JUnit Testcases: This JUnit series has been prepared to focus on our audiences who are absolute beginners as well as those who have a good knowledge of Java …

Read more


WebDriver Listeners In Selenium

WebDriver Listeners in Selenium

What are WebDriver Listeners? Why do we need Listeners in Selenium Automation Testing? This Tutorial Answers these Questions In Detail with Sample Code Examples: Listeners, as the name suggests, “listen” to any event that is prescribed in the Selenium code. For instance, if you want to know what happens before …

Read more


XPath Axes For Dynamic XPath In Selenium WebDriver

Xpath Axes for Dynamic Xpath in Selenium

This Tutorial Explains XPath Axes for Dynamic XPath in Selenium WebDriver With the help of Various XPath Axes Used, Examples and Explanation of Structure: The Following are the uses of XPath in finding the dynamic web components while automating using Selenium WebDriver. In the previous section, we learned about XPath …

Read more


XPath Functions For Dynamic XPath In Selenium

Dynamic_Effective Xpath in Selenium using Xpath Functions

This Tutorial Explains the Usage of XPath Functions in Identifying the Elements With Examples: Before automating any website is necessary to identify the object correctly before we can perform any operation on the same. As we know the easiest way to identify the element is by attributes like ID, Name, …

Read more


Robot Class in Selenium WebDriver With Java

Selenium Integration with Robot Framework

This Tutorial explains Uses, Examples & Functionalities of Robot Class In Java and its Integration with Selenium Framework: Robot Java is a Robot class in the Java AWT package. It is generally used to simulate real-time keyboard and mouse operations which we do manually. The main purpose of the Robot Class in …

Read more


Wiremock Stubbing, Stub Verification And Proxying With Example

Wiremock - Stubbing, Verification and Proxying

In this Tutorial, we will Explore Three Important Concepts of Wiremock in detail i.e. Stubbing, Stub Verification & Proxying: Stubbing in simple terms is pre-configuring responses to requests, Stub verification is verifying or validating that our stub was called and Proxying is routing requests to other hosts depending on parameters …

Read more


Wiremock Tutorial: Introduction To Wiremock

Wiremock Tool Introduction

This Introductory Video Tutorial will Explain the Features of Wiremock and how to run Wiremock as a Standalone Server & as a part of JUnit Tests: In this tutorial, we will be covering the basic concepts and details of the Wiremock tool. It can be used as a standalone HTTP …

Read more


Debugging Techniques In Selenium: Breakpoints, Debug Mode & More

Selenium Debugging Techniques

This Tutorial will Discuss all-about Debugging Techniques in Eclipse for Java Selenium. You can learn to Add Breakpoints, Run Code in Debug Mode and Debugging Tips: Debugging is one of the most important skills any automation tester should learn. It gives us the confidence to understand the code better. It …

Read more


Page Object Model In Selenium Without Using Page Factory

Page Object Model In Selenium Without Using Page Factory

Page Object Model (POM) is a Design Pattern to Maintain Object Repository for Web Elements. This Tutorial Explains how to Implement POM in Selenium Without Page Factory: The scripted automation project has to be designed in such a way that it is optimized and easier to understand. This is achieved …

Read more


Keyword Driven Framework In Selenium With Examples

Keyword Driven Framework In Selenium

This Comprehensive Tutorial on Keyword Driven Framework Explains Various Components of the Framework & How to Create One in Selenium: In general, Framework is a set of guidelines, which when followed will give beneficial results. The Keyword-Driven framework is a technique to externalize keywords/actions that are used in the script …

Read more


What Is Hybrid Framework In Selenium?

Hybrid Driven Framework In Selenium

This Informative Tutorial Explains What a Hybrid Framework, the Uses and Components of Selenium Hybrid Driven Framework, and How to Implement it is: What is a Hybrid Framework? Hybrid Driven Framework is a combination of both the Data-Driven and Keyword-Driven framework. Here, the keywords, as well as the test data, are externalized. …

Read more


How To Handle Windows Pop Up In Selenium Using AutoIT

How To Handle Windows Pop Up In Selenium Using AutoIT (1)

This Tutorial Explains Various Methods to Handle Windows Pop Up In Selenium Whenever Automation Goes out of Scope Using the AutoIT Tool: AutoIT is a third-party tool that gives Selenium a helping hand to handle pop-ups like Windows Authentication pop up, Flash applications, Desktop application and so on. Selenium is …

Read more


How To Create API Documentation In Postman?

Postman_ Creating API Documentation

This Tutorial Explains How To Create Good Looking, Styled Documentation with Minimal Efforts Using the API Documentation Support Provided by Postman Tool: For any API, whether Internal or Public-facing, documentation is one of the most essential ingredients for its success. The prime reason for that is, documentation is the way …

Read more