selenium处理滚动条

 1.用js实现

 滚动到底部

String js="document.documentElement.scrollTop=10000"
滚动到顶部
String js="document.documentElement.scrollTop=0"

2.用Actions类
底部
Actions a = new Actions(dr);
a.sendKeys(Keys.PAGE_DOWN).perform();

顶部

Actions a = new Actions(dr);
            a.sendKeys(Keys.PAGE_UP).perform();

 

posted on 2015-06-08 10:33  乔叶叶  阅读(283)  评论(0编辑  收藏  举报

导航