Selenium-测试对象操作之:浏览器滚动条

Posted 大灰狼不乖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium-测试对象操作之:浏览器滚动条相关的知识,希望对你有一定的参考价值。

#encoding=utf-8
from selenium import webdriver
import time,os
driver = webdriver.Chrome()
#打开网页
driver.get(‘https://www.baidu.com/‘)
driver.maximize_window()
input_box = driver.find_element_by_id("kw").send_keys(‘selenium‘)

driver.find_element_by_id("su").click()
time.sleep(3)
# 将页面滚动条拖到底部
js = "var q=document.body.scrollTop=100000"
driver.execute_script(js)
time.sleep(3)
# 将滚动条移动到页面的顶部
js = "var q=document.body.scrollTop=0"
driver.execute_script(js)
time.sleep(3)
# 将滚动条移动到页面的任意位置
js = "var q=document.body.scrollTop=500"
driver.execute_script(js)
time.sleep(3)

 

以上是关于Selenium-测试对象操作之:浏览器滚动条的主要内容,如果未能解决你的问题,请参考以下文章

java+selenium使用JS键盘滑动滚动条

Python+selenium之调用JavaScript

Selenium 浏览器滚动条操作

selenium+Python(Js处理浏览器滚动条)

selenium对js的执行操作——selenium控制浏览器页面的滚动

selenium操作下拉滚动条的几种方法