What is Unit test? Importance, Example of Unit Testing
|

What is Unit test? Importance, Example of Unit Testing

The process of unit testing is a crucial aspect of automated testing for digital applications. It provides stability and resilience by evaluating the performance of individual modules. Nonetheless, selecting a unit testing methodology may prove to be arduous owing to the diverse methodologies employed by testing teams. Before testing a single unit, it’s important to…

How & What should you learn in Java for Selenium Automation Testing?

How & What should you learn in Java for Selenium Automation Testing?

This is one of the most common questions we get these days. We would like to address this question in several sections, which will provide you with greater clarity regarding the amount of Java required for a career in test automation. Aside from this, we are including a set of instructional videos that we created…

How to implement data-driven testing in Selenium WebDriver with Java?
|

How to implement data-driven testing in Selenium WebDriver with Java?

Testing that uses data-driven methods is a slightly different approach from testing automation. When you create a standard test, you include any required data in the test itself. But in data-driven testing, you connect your test to a data source to get information. You can use many different data sources, such as CSV files, XML,…

What is Data-driven Testing? Selenium WebDriver Tutorial

What is Data-driven Testing? Selenium WebDriver Tutorial

Imagine a situation where you have to test an application with many input fields. Usually, you would hard-code those inputs and test them. However, hard-coding will be ineffective at scale. When you have to run through many permutations of acceptable input values for best-case, worst-case, positive, and negative test scenarios, hard-coding inputs will become cumbersome,…

What is Maven? What is pom.xml? Cucumber tutorials series.
|

What is Maven? What is pom.xml? Cucumber tutorials series.

Welcome back to the Cucumber tutorials series. This is our third tutorial for Cucumber free training. In 2 tutorials, we have talked about the following points: What are BDD frameworks What is Cucumber? What are the problems we can solve with Cucumber? How the industry is using Cucumber? What is Gherkin’s syntax? What are the…

What is Gherkin syntax? Cucumber tutorial series
|

What is Gherkin syntax? Cucumber tutorial series

Welcome back to the Cucumber tutorial series. In the last tutorial of this series, we discussed about BDD frameworks, Cucumber, problems solved by Cucumber, etc. To know more details, please refer to the following link: https://www.qaonlinetraining.com/what-is-cucumber-what-are-the-bdd-frameworks-selenium-tutorials/ So far, we know what Cucumber is and what it does. It executes the test scripts, which are defined…

What is Cucumber? What are the BDD frameworks? Selenium Tutorials
|

What is Cucumber? What are the BDD frameworks? Selenium Tutorials

Welcome to the Cucumber tutorial series. This tutorial series will help you learn cucumber, BDD frameworks, gherkin syntax, feature files, and many more. Alright, let’s move with our first tutorial. In this tutorial, you will learn: What are the BDD frameworks? Behavior-driven development (BDD) framework allows software testers to complete test scripts in plain English….

How to Test E-learning Web Application – Free Tutorial
| |

How to Test E-learning Web Application – Free Tutorial

These days, online training platforms and e-learning apps are used by both professionals and students. People are increasingly turning to online schools in order to gain access to unlimited online knowledge within a matter of seconds. If you are an organization that is ready to launch a new e-learning application, it is crucial to incorporate…

What are the JUnit 4 Annotations for Selenium Webdriver?
|

What are the JUnit 4 Annotations for Selenium Webdriver?

JUnit is a unit testing framework for the Java programming language, which you can use to execute tests. JUnit is used primarily to test every unit or component of your application, such as classes and methods. It is helpful to write and run repeatable automated tests to ensure your code is running as intended. The…

What is JUnit? What are the attributes of JUnit?
|

What is JUnit? What are the attributes of JUnit?

JUnit is an open-source unit testing framework for Java. It is helpful for Java Developers to write and run tests that they can repeat. The name implies that it is used for unit testing a small chunk of code. Those who adhere to the test-driven development methodology must write and execute unit tests before any code….

What is JavaScriptExecutor in Selenium?
|

What is JavaScriptExecutor in Selenium?

We have already seen many tutorials that tackle different elements actions and scenarios.  But sometimes Selenium web driver has problems interacting with certain web elements, like when a user opens a website and there is an unexpected pop-up window that prevents the web driver from doing things and makes the results inaccurate. JavascriptExecutor comes to…

How to capture screenshot for failed test cases in Selenium Webdriver?
|

How to capture screenshot for failed test cases in Selenium Webdriver?

Welcome to Free Training Tutorials, we have discussed how to capture snapshot screenshot in Selenium webdriver. It is not enough to be able to write a Selenium Webdriver script, anyone can design that nowadays. We must design the script in such a way that we can utilize script code as much as possible.  In this…