selenium滚动到顶部与底部
Posted xmlbw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium滚动到顶部与底部相关的知识,希望对你有一定的参考价值。
1 #coding=utf-8 2 from selenium import webdriver 3 4 #滚动到浏览器顶部 5 js_top = "var q=document.documentElement.scrollTop=0" 6 7 #滚动到浏览器底部 8 js_bottom = "var q=document.documentElement.scrollTop=10000" 9 js_bottom2 = "window.scrollTo(0,document.body.scrollHeight)" 10 11 driver = webdriver.Chrome() 12 driver.get(url) 13 driver.execute_script(js_bottom) 14 driver.execute_script(js_top) 15 driver.close()
以上是关于selenium滚动到顶部与底部的主要内容,如果未能解决你的问题,请参考以下文章
[TimLinux] JavaScript 代码控制滚动条移动到顶部/底部