Selenium JUnit Integration

In this article, you will learn about Selenium JUnit integration in your testing framework. We will also look at how to integrate the JUnit report at the end. In the last article, you have seen how to write a selenium …

Read more

Playwright Reporters with JavaScript

Hello learners, In this article let’s look into the playwright reporters. All the frameworks or projects, without reporting, are incomplete. In the previous article, we looked at how to configure the Playwright project. Playwright Tests supports a few built-in reporters to …

Read more

How to use JavaScriptExecutor in Selenium

In this article, you will learn about how JavaScriptExecutor works in selenium. Basically, JavaScriptExecutor is an Interface that allows you to execute JavaScript through the Selenium web driver. It is a medium that allows a web driver to interact with …

Read more

Powerful Selenium Wait Commands

In this article, you will learn about the Selenium Wait commands. In Selenium, waits play an important role while executing the tests. Selenium waits make web pages more reliable. It provides different types of wait options that are suitable under …

Read more

How to use Actions Class in Selenium

In this article, you will learn about the Actions class and their example. Selenium provides different methods to perform click, input text, and select from dropdowns and tables. However, there are such complex actions that we need to perform like …

Read more