Category Archives: Selenium Java
• Automation • Selenium Java • Tutorial
How To Modify HTTP Request Headers In JAVA Using Selenium WebDriver?
One of the most common test automation challenges is how do we modify the request headers in Selenium WebDriver. As an automation tester, you would come across this challenge for any programming language, including Java.
June 23, 2021
93240 Views
13 Min Read
TestNG vs JUnit: Which testing framework should you choose?
A test automation framework is a set of components that facilitates the execution of tests along with reporting the results of the test execution. However, the discovery of the right test automation framework can be super-challenging since there are so many options at your perusal.
May 24, 2021
102922 Views
14 Min Read
• Selenium Java • Automation • Tutorial
How to execute JUnit 4 tests with JUnit 5 [Tutorial]
Introduction to JUnit JUnit is a powerful framework for Selenium test automation that has been popularly used by developers to perform unit testing.
April 26, 2021
119037 Views
12 Min Read
• Selenium Java • Selenium WebDriver • Tutorial
How To Handle Login Pop-up In Selenium WebDriver Using Java?
Have you ever been asked for credentials while accessing a website on a browser? Let us understand why we are asked to fill up the credentials while accessing a few websites.
March 23, 2021
70509 Views
7 Min Read
• CI/CD • Selenium Java • Tutorial
How To Generate TestNG Reports In Jenkins?
TestNG is an open-source automated testing framework, where ‘NG’ of TestNG is Next Generation. It is similar to JUnit but designed to be better than JUnit, especially when testing integrated classes.
February 4, 2021
60865 Views
16 Min Read
• Automation • Selenium Java • Tutorial
How To Group Test Cases In TestNG [with Examples]
TestNG is an open-source automation testing framework inspired by JUnit and NUnit. The framework supports data-driven testing, parallel test execution, testing integrated classes, provides access to HTML reports, amongst others.
December 21, 2020
124094 Views
16 Min Read
• Automation • Selenium Java • Tutorial
How To Setup JUnit Environment For Your First Test?
This article is a part of our Content Hub. For more in-depth resources, check out our content hub on JUnit Tutorial. JUnit is a popular Java-based, open-source framework that is primarily used for unit testing. It can be used with Selenium for testing websites and web applications. Annotations in JUnit are used for identifying test … Continue reading How To Setup JUnit Environment For Your First Test?
December 7, 2020
112592 Views
23 Min Read
• Selenium Java • Automation • Tutorial
How To Run Junit Tests From The Command Line
This article is a part of our Content Hub. For more in-depth resources, check out our content hub on JUnit Tutorial. JUnit is one of the most popular Java-based open-source frameworks used for testing every unit of the application, i.e., classes and methods. And for automating the testing of web applications, you can use it … Continue reading How To Run Junit Tests From The Command Line
November 19, 2020
108512 Views
19 Min Read
How To Use Thread.sleep Java With Selenium?
Automating a web application optimizes the work, helps minimize errors and makes the product robust. An automated suite would be successful when the behaviour is predictable. If not so, there would be many hurdles in automation that need to be handled carefully.
October 8, 2020
75988 Views
10 Min Read
How To Use DataProviders In TestNG [With Examples]
In our earlier posts, we learned about using TestNG parameters in our TestNG scripts. To jog your memory, Parameterization In TestNG helps us pass data through the code and prevent hard-coding. However, TestNG parameters enable us to pass the values only once per execution cycle.
August 18, 2020
87384 Views
7 Min Read