top of page
Search

Best Selenium WebDriver Java Commands Cheat Sheet

Updated: Jul 3, 2023


Kenneth Etuk @K.Etuk / 7:00 PM EDT. October 04, 2022.


best-selenium-webdriver

The best Selenium WebDriver Java commands cheat sheet is exactly as it sounds like -- a cheat sheet for all things Selenium WebDriver. Keep reading to discover where I got the command names from, what are the most common commands, and then be sure to see my tutorial on how to get started with Selenium WebDriver (which includes using a headless browser, which is great when testing if your site works offline).


What is WebDriver?


WebDriver is an API used to simulate, test and validate web applications. Thousands of developers have learnt Java to use WebDriver because Selenium WebDriver supports both Java and Javascript. However, there are a lot of commands used in Selenium WebDriver that are not well known or even documented. This post is designed to save you some time by compiling all available commands and explaining basic uses in one straightforward resource.


WebDriver is an API used to interact with a browser from an application running on another computer. Selenium is the name of an open-source tool that comes in various languages. This allows developers to write tests for websites and automate them through their programming language of choice.


There are hundreds of WebDriver commands and plugins available for testing Java applications. In this post, I'll show you some of my favourite ways to speed up the Selenium WebDriver testing process simply by using the power of the terminal and your IDE!


This is a handy document to help those who are beginners to test automation to quickly execute web automation using selenium WebDriver with Java programming language. It contains quick guides and references to help you quickly remember Selenium commands and their associated functions.


java-auromation-testing

WebDriver Commands

  1. Get command

  2. get() - Used to open a specific URL

If the object of the WebDriver Interface is created and called “driver”

Syntax: driver.get( );

Example: driver.get(https://www.google.com);


  1. getPageSource( ); - Used to get source code of current page. The page source can be stored into a variable.

Syntax: driver.getPageSource();


  1. getTitle(); - Used to get title of current page. The title can be stored in a variable

Syntax: driver.getTitle();


  1. getCurrentUrl(); - Used to get URL of current page. URL can be stored into a variable.

Syntax: driver.getCurrentUrl();


  1. Close and Quit commands

  2. close(); - Used to close current tab

Syntax: driver.close();


  1. quit(); - Used to quit the browser window

Syntax: driver.quit();


  1. IsEnabled, IsSelected, IsDisplayed, sendKeys, click commands

To use these methods, you need to first find the element you intend to interact with (using any of the available ways and store it into a WebElement variable).

Example: WebElement radioButton = driver.findElement(By.id(“id of radio button “));

Boolean status = radioButton.isEnabled();


  1. isEnabled(); - Used to check if an element such as radio button is enabled or not. The result is stored into a Boolean variable.

Syntax: radioButton.isEnabled();


  1. isSelected(); - Used to check if an element such as checkbox is selected or not. The result is stored into a Boolean variable.

Syntax: radioButton.isSelected();


  1. isDisplayed() - Used to check if an element such as input field is displayed or not. The result is stored into a Boolean variable.

Syntax: radioButton.isDisplayed();


  1. sendKeys(); - Used to send text into an input field. It can also be used to press the computer keyboard keys. The Keys class library must be imported into code.

Syntax: firstNameField.sendKeys(“text”);

Example: WebElement firstNameField = driver.findElement(By.id(“id of first name field “));

firstNameField.sendKeys(“text”);


  1. click(); - Used to click on a button or link.

Syntax: radioButton.click();

Example: WebElement radioButton = driver.findElement(By.id(“id of radio button “));

radioButton.click();


webdriver-command

  1. Element locator commands

  2. findElement(By.Type of locator) - Used to locate elements on the webpage. This method can be used to locate elements using several ways such as: id, className, name, xpath, linkText, partialLinkText, CssSelector, etc. The By class library must be imported into the code.

Syntax: driver.findElement(By.id(“element id”));


  1. Navigate commands

  2. navigate().to(“URL”); - Used to navigate to a new webpage in current browser tab.

Syntax: driver.navigate().to(“URL”);

Example: Syntax: driver.navigate().to(https://www.facebook.com);


  1. navigate().back(). - Used to navigate to a previous webpage in current browser tab.

Syntax: driver.navigate().back();


  1. navigate().forward(). - Used to navigate to a webpage previously visited and one that was just returned from in current browser tab.

Syntax: driver.navigate().forward();


  1. navigate().refresh(). - Used to refresh or reload current webpage in current browser tab.

Syntax: driver.navigate().refresh();


  1. Thread.sleep, ImplicitWait, ExplicitWait Commands

  2. Thread.sleep(sleep time) - Used in Java to pause the code by the number of time provided in milliseconds. Interrupted exception should be added to code and time library should be imported into code.

Syntax: Thread.sleep(2000);


  1. implicitWait(time, time unit) - Used by selenium to pause the code and wait for all elements of a webpage to load. Time library should be imported into code.

Syntax: driver.manage().timeouts().implicitWait(timeOut, TimeUnit.SECONDS);

Example: driver.manage().timeouts().implicitWait(20, TimeUnit.SECONDS);


  1. explicitWait() - Used to wait for a condition to occur on a particular element such as waiting for a specific element to be visible before interacting with it. To implement explicit wait, you need to create an object (example, wait) of the WebDriverWait class and pass the driver and wait time as parameters. You should also import the WebDriverWait library into the code. The WebDriverWait checks the condition as well as perform actions such as locating element. Therefore, you do not need to use findElement method along side it.

Syntax: WebDriverWait wait = new WebDriverWait (driver, 20); wait.until(ExpectedConditions.VisibilityofElementLocated(By.xpath(""//button[@value='Save Changes']"")));


  1. Select commands for Handling Dropdown Menu

WebElement DropDown = driver.findElement(By.id("dropDownText"));

Select dropdown = new Select(DropDown );


Create a variable (DropDown) of type WebElement and locate the drop down menu field with id dropDownText (you can locate the menu field by any other means) and save it into the variable DropDown (or use any name of your choice). Next create an object of Select class with object name dropdown (or any name of your choice) and pass the variable (DropDown) as parameter.


  1. selectByVisibleText(“text”); - Used to select from dropdown menu by its visible text.

Syntax: dropdown.selectByVisibleText("Green");


  1. selectByIndex(index); - Used to select from dropdown menu by its index number

Syntax: dropdown.selectByIndex(4);


  1. deselectByValue(“value”); Used to select from dropdown menu by its value

Syntax: dropdown.selectByValue("House");


  1. Alert class command for handling Alert

In handling alert, create an instance of the Alert class object (alert) and import the Alert class library into the code. Then use the object created to access the various Alert methods. The switchTo().alert() method chaining will switch the focus from the main window to the alert window.

Alert alert = (Alert) driver.switchTo().alert();

  1. alert.accept(); - Used to accept the alert by clicking on the alert OK button

  2. Alert.dismiss(); - used to dismiss the alert by clicking on the dismiss button.


  1. JavaScript Executor commands for Handling Scrolling

Selenium does not implement methods of its own to scroll a webpage horizontally or vertically. To scroll a webpage, the JavaScript scroll methods are used instead. A webpage can be scrolled in three ways:

  1. Scroll by pixel: This allows a webpage to be scroll to a desired pixel

  2. Scroll to visibility of element: This allows a webpage to be scroll to a specific element.

  3. Scroll to bottom of webpage: This allows a webpage to be scrolled to its bottom. To implement scroll, create object of JavascriptExecutor class and import the class library into the code.

JavascriptExecutor scroll = (JavascriptExecutor) driver;

scroll.executeScript(Script,Arguments);

  1. scroll.executeScript("window.scrollBy(0,500)") - Scroll from 0 pixel to 500 pixel.


  1. scroll.executeScript("arguments[0].scrollIntoView();",Element ); - scroll till element is found. Element is first located and stored in variable of type WebElement, as in

WebElement Element = driver.findElement(By.id(“id name”);

WebElement class must be imported into code.


  1. scroll.executeScript("window.scrollTo(0, document.body.scrollHeight)"); - scroll to end of webpage


  1. Commands to Switch Between Browser Tabs

To perform browser tab switch, first navigate to a webpage then get the page handle and save in a variable.

driver.get("https://business.twitter.com/start-advertising");

String oldTab = driver.getWindowHandle();

Next click on a link that opens in a new tab


driver.findElement(By.linkText("Twitter Advertising Blog")).click();


Next create an array variable (NewTab) and store the handle of the new tab


ArrayList<String> newTab = new ArrayList<String>(driver.getWindowHandles());


Next switch between tabs using the switchTo() methods


driver.switchTo().window(newTab.get(0));

driver.switchTo().window(oldTab);


  1. Commands to Handle and Switch Between Webpage Frames

A webpage frame can be switched to in three ways:

  1. By Index

  2. By Name or Id

  3. By Web Element

iFrame index starts from 0 so we can right-click and inspect the page source to identify the iFrame number we wish to switch to, as in

driver.switchTo().frame(0);

We can also switch to iFrame by id or name. We first need to inspect and identify the id or name of the iFrame and then switch to it. Assuming the iFrame id is iframe1, then

driver.switchTo().frame(“iframe1”);

To return to the main or parent frame we can use the commands:

  1. driver.switchTo().parentFrame();


or

  1. driver.switchTo().defaultContent();

  2. Action Class Commands

The methods of the Action class can be used to perform the following actions:

  1. Mouse Hover

  2. Mouse double-click

  3. Mouse right-click

  4. Drag and Drop

  5. Moving Slide

  6. Resize

The Action class moveToElement() method is used to implement mouse actions. To implement the mouse action, we first instantiate the Action class

Actions actions = new Actions(driver);

Next, we locate the element we want to move to and save it in a variable (targetElement) of type WebElement.

WebElement targetElement = driver.findElement(By.id(“id of element”));

Next, we need to invoke the perform() method to move to the element, passing the element name as argument.

  1. To hover over element: actions.moveToElement(targetElement).build().perform();

  1. To double click on element: actions.doubleClick(WebElement).build().perform();


  1. To right click on element: actions.contextClick(WebElement).build().perform();


  1. To drag and drop: actions.dragAndDrop(Source WebElement, Target WebElement).build().perform();


  1. To click and hold: actions.clickAndHold(Source WebElement).moveToElement(Target WebElement).release().build().perform();


  1. To move the slider: actions.moveToElement(WebElement).dragAndDropBy(WebElement, 300, 0).build().perform();


  1. To resize: actions.moveToElement(WebElement).dragAndDropBy(WebElement, 100, 100).build().perform();

Test Servers to practice hands-on exercises

https://goo.gl/i9szt3

  1. Alerts

http://demo.automationtesting.in/Alerts.html

  1. Registration form

  1. Scrolling

  1. Mouse Hover

  1. Double click

  1. Mouse Right click

  1. Drag and Drop

http://www.dhtmlgoodies.com/scripts/drag-drop-custom/demo-drag-drop-3.html https://gojs.net/latest/samples/htmlDragDrop.html

  1. Slider

One of the biggest challenges faced by students who are learning how to write test scripts with Selenium WebDriver is that they often don't know where to look for a complete list of commands. When you can't find the reference guide that you need, writing test code is naturally much more difficult. That's why we've written this article: to focus on the most important topics and provide an easy-to-read reference guide for Java coding commands.


Are you ready to leap into your dream IT career? If you want to learn everything about Selenium and other tools, or you wish to have in-depth knowledge of software testing, BusyQA will help you make that possible. Our courses are easy, affordable, designed to teach you exactly what you need, and delivered in online and in-class formats. You can get started with our software testing course which covers the fundamentals of Manual, Mobile, Web Service, SQL, and Automation. Not only will you learn what you need to succeed, but you could be eligible to obtain hands-on experience with our in-house paid co-op (not guaranteed), which will help you blow the competition away. To land your dream job, click here to see our next schedule.

bottom of page