标签:
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();
标签:
原文地址:http://www.cnblogs.com/qiaoyeye/p/4560300.html