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: I have used it for checking alerts. You can use any other type methods to find the locator. EDIT 1: I should … Read more