1. 程式人生 > >函式解決頁面懶載入問題(即selenium拖動滾動條到懶載入網頁的最底部)

函式解決頁面懶載入問題(即selenium拖動滾動條到懶載入網頁的最底部)

all_window_height =  []  # 建立一個列表,用於記錄每一次拖動滾動條後頁面的最大高度
all_window_height.append(driver.execute_script("return document.body.scrollHeight;")) #當前頁面的最大高度加入列表
while True:
    driver.execute_script("scroll(0,100000)") # 執行拖動滾動條操作
    time.sleep(3)
    check_height = driver.execute_script("return document.body.scrollHeight;")
    if check_height == all_window_height[-1]:  #判斷拖動滾動條後的最大高度與上一次的最大高度的大小,相等表明到了最底部
        break
    else:
        all_window_height.append(check_height) #如果不想等,將當前頁面最大高度加入列表。