码迷,mamicode.com
首页 > 其他好文 > 详细

seleium 滑动到底部

时间:2018-07-29 16:34:11      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:cti   .exe   height   var   timeout   def   one   drive   window   

def scroll(driver):
driver.execute_script("""
(function () {
var y = document.body.scrollTop;
var step = 100;
window.scroll(0, y);
function f() {
if (y < document.body.scrollHeight) {
y += step;
window.scroll(0, y);
setTimeout(f, 50);
}
else {
window.scroll(0, y);
document.title += "scroll-done";
}
}
setTimeout(f, 1000);
})();
""")

seleium 滑动到底部

标签:cti   .exe   height   var   timeout   def   one   drive   window   

原文地址:https://www.cnblogs.com/simadongyang/p/9385363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!