Monday, December 22, 2025
HomeLanguagesPython – find_element() method in Selenium

Python – find_element() method in Selenium

While performing any action on a web page using selenium, there is need of locators to perform specific tasks. Locators in web page are used to identify unique elements within a webpage. Web elements could be anything that the user sees on the page, such as title, table, links, buttons, toggle button, or any other HTML element.

In order to find element by “id” find_element() method is used. Id is basically unique attribute assigned to the elements of the web page such as buttons, image, heading etc.

Syntax :  

driver.find_element("id","id_of_element")

Argument:  

First argument: Takes id in string format
Second argument: Takes id of the element to be located 

Note: The first element with the “id” attribute value matching the location will be returned. If no element has a matching “id” attribute, a NoSuchElementException will be raised.

Example 1:

Consider the following page source:  

Below is the code for finding the element i.e “geek_id” 

Python3




# importing webdriver from selenium
from selenium import webdriver
 
# Here Chrome  will be used
driver = webdriver.Chrome()
 
# Opening the website
driver.get(url)
 
# finds button using its id
form = driver.find_element("id", 'geek_id')


The form element can be located like this.

Example: Source code of https://www.geeksforgeeks.org/ is given below. 

Below is the code for finding the scroll button with the help of its ID i.e scrollTopBtn.  

Python3




# importing webdriver from selenium
from selenium import webdriver
 
# Here Chrome  will be used
driver = webdriver.Chrome()
 
# URL of website
 
# Opening the website
driver.get(url)
 
# finds button using its id
bt = driver.find_element("id", 'scrollTopBtn')


With this code we can locate the scroll top button of this site.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32455 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS