zoukankan      html  css  js  c++  java
  • (selenium+python)_UI自动化08_模拟滑动页面

    前言

    浏览网页时,经常需要进行滑动页面操作。selenium进行自动化过程中,可通过execute_script执行js语句实现页面滑动。常见的滑动场景分为四种:滑动至页面底部、滑动至顶部、滑动至具体位置、滑动至目标元素可见。

    滑动至顶部

    1 js="window.scrollTo(0,-document.body.scrollHeight)" 
    2 driver.execute_script(js)

    滑动至底部

    1 js="window.scrollTo(0,document.body.scrollHeight)" 
    2 driver.execute_script(js)

    滑动到具体位置

    1 window.scrollBy(0,500)  # 向下滑动500个像素
    2  
    3 window.scrollBy(0,-500) # 向上滚动500个像素
    4 
    5 window.scrollBy(500,0)  # 向右滑动500个像素
    6 
    7 window.scrollBy(-500,0) # 向左滚动500个像素
    8 
    9 driver.execute_script("window.scrollTo(x,y)")  # 滑动到具体位置

    滑动至目标元素可见

    1 driver.execute_script("arguments[0].scrollIntoView();", element)  # 向下滚动至-元素可见
    2 
    3 driver.execute_script("arguments[0].scrollIntoView(false);", element)  # 向上滚动至-元素可见
  • 相关阅读:
    export环境变量 & bash shell使用命令和环境变量
    crontab定时任务
    sh脚本
    Linux的用户及权限相关
    HTTP基础
    群晖Synology
    Cntlm
    oracle存储过程
    ORACLE 增加两列字段
    excel 公式 insert 语句
  • 原文地址:https://www.cnblogs.com/mini-monkey/p/12121597.html
Copyright © 2011-2022 走看看