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();