How to check if page is loaded in Selenium Python?

Selenium Python – Check if page is loaded

In this tutorial, you will learn how to check if a page is loaded using Selenium in Python.

To check if a page is loaded in Selenium Python, we can wait for a specific (known) element in the webpage to be present.

In Selenium, we can implement this solution using WebDriverWait class and expected_conditions module.

Solutions

1. Define Expected Condition

Firstly, define the expected condition. Call presence_of_element_located() function of the expected_conditions module and pass the By strategy and web element locator as arguments.

For example, if we can conclude that the page is loaded fully by the presence of an element with id="myDiv" in the webpage, then the expected condition can be defined as shown in the following code.

element_present = exprected_conditions.presence_of_element_located((By.XPATH, "//[@id='myDiv']"))
Copy

2. Wait until timeout for expected condition to satisfy

As we have already defined the expected condition, now we have to wait for that condition to satisfy in a given maximum amount of time, say timeout.

For example, if we have to wait for a maximum time of timeout, for the expected condition to fulfil, the code is as shown in the following.

WebDriverWait(driver, timeout).until(element_present)
Copy

If the expected condition is fulfilled, the above statement is marked complete and continues with the following statements.

But, if the expected condition is not fulfilled, the above statement raises TimeoutException.

Example

In this example, we shall consider loading the HTML file at URL: https://pythonexamples.org/tmp/selenium/index-13.html. The contents of this HTML file is given below.

<html>
 <body>
  <h2>Hello User!</h2>
  <div id="parent">
    <div id="child1">This is child 1.</div>
    <div id="child2">This is child 2.</div>
    <div id="child3">This is child 3.</div>
  </div>
 </body>
</html>
Copy

In the following program, let us make an assumption that the presence of element with id="child3" is an expected condition for the page to have been loaded successfully. Using this expected condition, let us check if the page is loaded successfully.

Python Program

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.service import Service as ChromeService
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC


# Setup chrome driver
driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))

# Navigate to the url
driver.get('https://pythonexamples.org/tmp/selenium/index-13.html')

# Set the maximum amount of time to wait for the page to load (in seconds)
timeout = 10

# Wait for the presence of a specific element on the page
try:
    element_present = EC.presence_of_element_located((By.XPATH, "//*[@id='child3']"))
    WebDriverWait(driver, timeout).until(element_present)
    print("Page loaded successfully!")
except TimeoutException:
    print("Timed out waiting for page to load.")

# Close the driver
driver.quit()
Copy

Output

Page loaded successfully!

Summary

In this Python Selenium tutorial, we have given instructions on how to check if a page is loaded, with example program.

Related Tutorials

Quiz on Selenium

Q1. What is a web driver in Selenium Python?

Not answered

Q2. Which of the following is not a popular web driver used in Selenium Python?

Not answered

Q3. What is the method used to find web elements in Selenium Python?

Not answered

Q4. Which of the following is not a commonly used assertion method in Selenium Python?

Not answered

Q5. Which of the following is not a commonly used web element locator in Selenium Python?

Not answered
Code copied to clipboard successfully 👍