Check out my iOS apps here
As an Amazon Associate I earn from qualifying purchases.

Selenium

How to Find Web Elements in Selenium Web Driver with Java tutorial (With examples).

There Are Many Ways To Locate Web Elements In A Web Page Using Selenium Web Driver Before we get to interact with the various elements on the web page, like filling textboxes or clicking on buttons, we have to locate them & store them in variables. There are many ways to do so, either by …

How to Find Web Elements in Selenium Web Driver with Java tutorial (With examples). Read More »

How to launch any browser using Selenium Web Driver & Java:- Chrome, Firefox, Safari, Microsoft Edge, Internet Explorer, HTML Unit & Opera

Lets Learn How To Launch Almost Any Browser Using Selenium Web Driver In the Getting Started With Selenium WebDriver tutorial. We used the WebDriver to Launch Firefox and open pages with it. For the sake of simplicity, we have been using it in the rest of the series. But chances that you want to launch …

How to launch any browser using Selenium Web Driver & Java:- Chrome, Firefox, Safari, Microsoft Edge, Internet Explorer, HTML Unit & Opera Read More »

How to launch Safari using Selenium Web Driver (Mac OS & Mac OSX)

Launching Safari Using Selenium Web Driver Is Slightly Different, Here’s How To Do It Safari is the main browser that comes with Apple devices, both Mac & iOS. Because it was discontinued from Windows in 2012, using it with Selenium can only be done on a Mac machine. Unlike the other browsers, like Chrome & …

How to launch Safari using Selenium Web Driver (Mac OS & Mac OSX) Read More »

How to locate, select & iterate through Radio buttons with Selenium WebDriver & Java

Let’s Interact With Radio Buttons & Radio Buttons Group Using Selenium Web Driver In the previous tutorials, we have seen how we can click on a WebElement using the click() function, fill textbox with text using the sendKeys() functions. These are the functions you will need most of the time. But some forms have other …

How to locate, select & iterate through Radio buttons with Selenium WebDriver & Java Read More »

What is HtmlUnitDriver, how to use it with Selenium Web Driver & Java, and what are its advantages & disadvantages?

What Is HtmlUnitDriver? HtmlUnitDriver is headless browser you could launch with Selenium Web Driver, meaning that it’s a browser without a user interface. Such browsers have many advantages, like taking less resources, since they don’t have to render the web elements visually on the screen. Although some pages may not render correctly in such browsers, …

What is HtmlUnitDriver, how to use it with Selenium Web Driver & Java, and what are its advantages & disadvantages? Read More »

Selenium Web Driver Tutorial:- Locating elements & Filling a login form

Let’s Learn How To Use Web Driver To Fill A Login Form And Submit It In the previous lesson, we launched Firefox using Web Driver & opened a page, then closed the browser. That was nice for a starter, but we would want to do more than that with Selenium. We want to automate filling …

Selenium Web Driver Tutorial:- Locating elements & Filling a login form Read More »

Getting Started With Selenium Web Driver:- Setting up Eclipse And Opening A Web Page With Firefox Web Driver

It’s Time To Setup Selenium Web Driver & Write Our First Test Now we got to know about Selenium & the main tools under it. It’s time to start using the Web Driver, which is the main focus of this series. In this lesson, we will download Selenium & integrate it into Eclipse (you can …

Getting Started With Selenium Web Driver:- Setting up Eclipse And Opening A Web Page With Firefox Web Driver Read More »

Introduction to selenium web driver series. What is it? And what browsers & programming languages it supports

Interested In Browser Automation? Let’s Learn That With Selenium Web Driver Selenium is a very prominent tool to launch & control a browser instance using many popular programming languages. It’s commonly used for testing web applications, automation, as well as web scraping (which can be illegal). In this series, we will take a look at …

Introduction to selenium web driver series. What is it? And what browsers & programming languages it supports Read More »