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

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

Interact with Web Components in Selenium

An application contains different types of web components like – TextBoxes, TextAreas, CheckBoxes, Radio Buttons, Dropdowns, Buttons, Lists, Alerts, etc. All of these are used for specific tasks. Selenium WebElement provides a way to interact with all web components and …

Read more

Selenium – Writing First Test Case

In this article, we will write our first web automation test case using Java. While working on a project for test automation, you should require all the selenium dependencies. Usually, those dependencies will be downloaded manually throughout the project lifecycle. …

Read more