Articles in this series
What is Selenium? Selenium is an open source library which is used to interact with browsers. It provides various APIs to perform actions on a web...
What is Selenium Manager and how does it work. · What is a driver? A driver is a component that enables communication between our automation script...
Selenium WebDriver API hierarchy. Top casting options — which of them works and which don’t, and why. · Introduction : WebDriver API is one of the 3...
Let's recap the WebDriver WebDriver is one of the three components in Selenium that drives a browser. WebDriver launches a browser session natively...
driver.get() : Method signature : driver.get(String URL_to_launch) . WebDriver interface provides this method to launch a browser: public class...
By class locator strategies : By class provides several locator strategies to find elements on the web page. The findElement() and findElements()...