91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • python中的selenium如何實現自動向下滾動頁面并指定最大滑動距離

python中的selenium如何實現自動向下滾動頁面并指定最大滑動距離

發布時間:2022-02-14 09:50:29 來源:億速云 閱讀:1061 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關python中的selenium如何實現自動向下滾動頁面并指定最大滑動距離的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

需要selenium控制的chrome向下滑動,自動加載一些內容,核心代碼是:

browser.execute_script("window.scrollBy(0,300)")

這行可以向下滑動300個像素

需要的工具函數如下:

def roll_window_to_bottom(browser, stop_length=None, step_length=500):
    """selenium 滾動當前頁面,向下滑
    :param browser: selenium的webdriver
    :param stop_length: 滑動的最大值
    :param step_length: 每次滑動的值
    """
    original_top = 0
    while True:  # 循環向下滑動
        if stop_length:
            if stop_length - step_length < 0:
                browser.execute_script("window.scrollBy(0,{})".format(stop_length))
                break
            stop_length -= step_length
        browser.execute_script("window.scrollBy(0,{})".format(step_length))
        time.sleep(0.5 + random.random())  # 停頓一下
        check_height = browser.execute_script(
            "return document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;")
        if check_height == original_top:  # 判斷滑動后距頂部的距離與滑動前距頂部的距離
            break
        original_top = check_height

使用示例:

from selenium import webdriver
import time
import random


def roll_window_to_bottom(browser, stop_length=None, step_length=500):
    """selenium 滾動當前頁面,向下滑
    :param browser: selenium的webdriver
    :param stop_length: 滑動的最大值
    :param step_length: 每次滑動的值
    """
    original_top = 0
    while True:  # 循環向下滑動
        if stop_length:
            if stop_length - step_length < 0:
                browser.execute_script("window.scrollBy(0,{})".format(stop_length))
                break
            stop_length -= step_length

        browser.execute_script("window.scrollBy(0,{})".format(step_length))
        time.sleep(0.5 + random.random())  # 停頓一下
        check_height = browser.execute_script(
            "return document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;")
        if check_height == original_top:  # 判斷滑動后距頂部的距離與滑動前距頂部的距離
            break
        original_top = check_height


def main():
    option = webdriver.ChromeOptions()
    option.add_argument('lang=zh_CN.UTF-8')  # 設置
    browser = webdriver.Chrome(chrome_options=option, desired_capabilities={"page_load_strategy": "none"})
    browser.get("http://news.baidu.com/")
    roll_window_to_bottom(browser, stop_length=700)


if __name__ == '__main__':
    main()

感謝各位的閱讀!關于“python中的selenium如何實現自動向下滾動頁面并指定最大滑動距離”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西乌珠穆沁旗| 夏津县| 马尔康县| 西峡县| 巩留县| 三河市| 都兰县| 吉首市| 彭泽县| 赫章县| 新闻| 密云县| 临邑县| 会宁县| 行唐县| 昌宁县| 佛教| 镇原县| 庄河市| 酒泉市| 栾城县| 利川市| 仙桃市| 龙岩市| 布尔津县| 延吉市| 双鸭山市| 德保县| 益阳市| 津南区| 桂阳县| 仙居县| 陇南市| 革吉县| 开原市| 镇安县| 边坝县| 化州市| 雷山县| 班玛县| 新密市|