HomeGuideFind Element in Selenium : Differences between Selenium findElement and findElements
Find Element in Selenium : Differences between Selenium findElement and findElements
By Neha Vaidya, Community Contributor - February 11, 2020
Table of Contents
Finding elements on the webpage can be a nightmare due to the complexity of web elements. However, web elements play a vital role in developing and testing any application. To make things easier for testers, this article will offer some insight into Selenium findElement and findElements with the help of an example.
Here’s what the article will cover:
Introduction to Selenium findElement
Difference between findElement and findElements
Syntax of Selenium findElement
Types of locators
Using locator Strategy to findElement
Introduction to Selenium findElement
Interaction with a web page requires the driver to locate a web element and either trigger a JavaScript event like a click, enter, select, etc. or type in the field value. Usually, one starts automated testing of any web-app with finding relevant web elements on the web page. Most often, such automated testing is executed by using frameworks like Selenium WebDriver.
Selenium defines two methods for identifying web elements:
findElement: A command used to uniquely identify a web element within the web page.
findElements: A command used to identify a list of web elements within the web page.
Let’s understand the difference between these two methods in greater detail.
Difference between findElement and findElements
findElement
findElements
Returns the first matching web element if multiple web elements are discovered by the locator
Returns a list of multiple matching web elements
Throws NoSuchElementException if the element is not found
Returns an empty list if no matching element is found
The findElement command returns an object of type WebElement. It can use various locator strategies such as ID, Name, ClassName, link text, XPath, etc.
The findElements command returns an empty list if there are no elements found using the given locator strategy and locator value. Below is the syntax of findElements command.
Now, let’s delve deeper into understanding how to find web elements with the help of various locators. One can refer different types of locators in Selenium.
Let’s understand how to use Selenium findElement in various ways:
1. Find by ID
ID is uniquely defined for each element and is the most common way to locate elements using ID Locator. If a website has dynamically generated ids, then this strategy cannot be used to uniquely find an element. However, it will return the first web element which matches the locator.
Example: Let’s take www.amazon.com for automating and find the elements. When one navigates through the search box and inspects the element, they will be able to see various web elements as shown in the snapshot below.
As you can see, it comprises an ID locator whose value is twotabsearchtextbox. The snippet below uses the same locator value to write a program.
from selenium import webdriver
driver = webdriver.Chrome(‘./chromedriver’)
#instance of Chrome | Firefox | IE driver
driver.get(<url>)
elementID = driver.findElement(By.id("twotabsearchtextbox"))
# will raise NoSuchElementException if not found
2. Find by Name
This is similar to Find By ID except the driver will locate an element by “name” attribute instead of “id”.
Example: Consider the same amazon webpage. The search box also has a name locator whose value is “field-keywords” as shown in the snapshot below.
The entire code remains similar to that of ID locator, except that the difference will be in the findElement syntax.
CSS Selector is used to provide style rules for web pages and also can be used to identify one or more web elements.
Example: Consider the same search box of the Amazon page. It has a class attribute whose value is nav-search-input. Using the same value, the Selenium findElement method can locate the element.
XPath is a technique in Selenium to navigate through the HTML structure of a page. XPath enables testers to navigate through the XML structure of any document and can be used on both HTML and XML documents.
Example: Let’s try to locate the same search bar in Amazon with the help of XPath. The code below shows that it contains an ID locator. Note that relative XPath starts with ‘//’.
In the image below, one can see an input tag. Start with //input. Here //input implies a tag name. Make use of the id attribute and pass twotabsearchtextbox in single quotes as its value. This will give the XPath expression shown below:
//input[@id=’twotabsearchtextbox’]
Now, using Selenium findElement method, execute the code below: