Open In App

Selenium – Search for text on page

Prerequisite:- Selenium

Selenium is a powerful tool for controlling web browsers through programs and performing browser automation. It is functional for all browsers, works on all major OS and its scripts are written in various languages i.e Python, Java, C#, etc, we will be working with Python.



In this article, we will learn how to know whether the text is on a web page or not using selenium in python.

Approach:



Below is the implementation:




# import webdriver
from selenium import webdriver
 
# create webdriver object
driver = webdriver.Chrome()
 
# URL of the website
 
# Opening the URL
driver.get(url)
 
# Getting current URL source code
get_source = driver.page_source
 
# Text you want to search
search_text = "Floor"
 
# print True if text is present else False
print(search_text in get_source)

Output:

True

Demonstration:

Article Tags :