今天在写脚本的时候,学习了执行js,实现滚动条,对于scrollTop=10000中这个10000是怎么来的,还不是很了解,先将方法记录一下,
1.滚动条回到顶部:
js_up="document.documentElement.scrollTop=0"
driver.execute_script(js_up)
2.滚动条拉到底部
js_down="document.documentElement.scrollTop=10000"
driver.execute_script(js_down)