0
Python Selenium WebDriverでURLを無限ループする方法はありますか?私はtime.sleepのdriver.refresh()を試みましたが、非常に効率的ではありません。ループドライバ.get URL(webdriver python)
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
import os
import time
chromedriver = "chromedriver.exe"
driver = webdriver.Chrome()
driver.get("http://www.example.com/load")
が重複する可能性をあなたの問題を解決するのに役立ちます(http://stackoverflow.com/questions/15623045/an-infinite-loop-in -python) – JeffC