python中的selenium实现自动向下滚动页面并指定最大滑动距离
作者:呆萌的代Ma 时间:2021-09-04 20:44:03
需要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()
来源:https://blog.csdn.net/weixin_35757704/article/details/122763602
标签:python,selenium,滚动页面,滑动距离
0
投稿
猜你喜欢
php实现图片转换成ASCII码的方法
2023-09-07 12:10:57
详解python连接telnet和ssh的两种方式
2023-02-10 01:27:14
PHP 面向对象程序设计(oop)学习笔记(一) - 抽象类、对象接口、instanceof 和契约式编程
2023-11-19 20:31:59
python从入门到精通(DAY 1)
2022-08-12 17:26:56
python实现机械分词之逆向最大匹配算法代码示例
2022-01-02 08:16:27
解决Jupyter Notebook开始菜单栏Anaconda下消失的问题
2021-04-09 18:33:05
Python PyWebIO实现网页版数据查询器
2023-07-11 20:01:03
js RuntimeObject() 获取ie里面自定义函数或者属性的集合
2024-04-22 13:06:34
解决Tensorflow使用pip安装后没有model目录的问题
2023-08-09 22:58:05
MySQL模式 Strict Mode知识点详解
2024-01-27 20:50:41
JavaScript中的全局对象介绍
2024-04-22 22:41:29
Python爬虫库requests获取响应内容、响应状态码、响应头
2022-05-03 14:37:27
记一次pyinstaller打包pygame项目为exe的过程(带图片)
2023-12-29 12:45:19
vue中的Object.freeze() 优化数据方式
2024-04-10 16:10:25
Python反射用法实例简析
2021-10-15 20:28:34
PHP Web木马扫描器代码 v1.0 安全测试工具
2024-04-29 13:58:09
vue基本使用--refs获取组件或元素的实例
2024-05-02 16:35:20
pycharm 使用tab跳出正在编辑的括号(){}{}等问题
2023-06-14 03:17:55
Jupyter安装链接aconda实现过程图解
2022-02-04 21:33:57
pyqt 实现在Widgets中显示图片和文字的方法
2021-12-25 07:28:16