How to make Selenium not wait till full page load, which has a slowscript?

后端 未结 1 1082
逝去的感伤
逝去的感伤 2020-11-22 07:10

Selenium driver.get (url) wait till full page load. But a scraping page try to load some dead JS script. So my Python script wait for it and doesn\'t works few

相关标签:
1条回答
  • 2020-11-22 07:42

    When Selenium loads a page/url by default it follows a default configuration with pageLoadStrategy set to normal. To make Selenium not to wait for full page load we can configure the pageLoadStrategy. pageLoadStrategy supports 3 different values as follows:

    1. normal (full page load)
    2. eager (interactive)
    3. none

    Here is the code block to configure the pageLoadStrategy :

    • Firefox :

      from selenium import webdriver
      from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
      
      caps = DesiredCapabilities().FIREFOX
      caps["pageLoadStrategy"] = "normal"  #  complete
      #caps["pageLoadStrategy"] = "eager"  #  interactive
      #caps["pageLoadStrategy"] = "none"
      driver = webdriver.Firefox(desired_capabilities=caps, executable_path=r'C:\path\to\geckodriver.exe')
      driver.get("http://google.com")
      
    • Chrome :

      from selenium import webdriver
      from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
      
      caps = DesiredCapabilities().CHROME
      caps["pageLoadStrategy"] = "normal"  #  complete
      #caps["pageLoadStrategy"] = "eager"  #  interactive
      #caps["pageLoadStrategy"] = "none"
      driver = webdriver.Chrome(desired_capabilities=caps, executable_path=r'C:\path\to\chromedriver.exe')
      driver.get("http://google.com")
      

    Note : pageLoadStrategy values normal, eager and none is a requirement as per WebDriver W3C Editor's Draft but pageLoadStrategy value as eager is still a WIP (Work In Progress) within ChromeDriver implementation. You can find a detailed discussion in “Eager” Page Load Strategy workaround for Chromedriver Selenium in Python

    0 讨论(0)
提交回复
热议问题