codecamp

selenium2 怎么滚动到页面的底部?

你可以使用​execute_script​方法来在载入的页面上执行JS,因此,你可以调用JS的API来滚动到页面的底部或者其他任意位置。

下面是一个滚动到底部的实例:

driver.execute_script("window.scrollTo(0,document.body.scrollHeight);")

DOM的窗口对象有一个​ scrollTo​ 方法来在打开的窗口中滚动到任意位置, ​scrollHeight​是所有元素的一个通用属性,​document.body.scrollHeight​是页面整个​body​的高度。


Selenium 2 支持 XPath 2.0 吗?
selenium2 怎样使用定制的 Firefox profile自动保存文件
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }