Wait until page is loaded with Selenium WebDriver for Python

The webdriver will wait for a page to load by default via .get() method. As you may be looking for some specific element as @user227215 said, you should use WebDriverWait to wait for an element located in your page: from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.by … Read more