码迷,mamicode.com
首页 > Web开发 > 详细

JS实现Selenium下拉滚动条到指定元素

时间:2018-01-08 11:04:22      阅读:473      评论:0      收藏:0      [点我收藏+]

标签:页面   argument   xpath   top   body   find   ref   pos   browser   

1、以下只适合IE、Firefox:

1 el=browserCore.findElement(By.xpath(xpath));
2 javaScriptExecutor.executeScript("arguments[0].scrollIntoView();", el);  
3 javaScriptExecutor.executeScript("arguments[0].scrollIntoView(true);", el);
4 pause(stepInterval);

2、以下IE、Firefox、Chrome都适用:

1 el=browserCore.findElement(By.xpath(xpath)); 
2 //将页面滚动条拖到指定元素处
3 javaScriptExecutor.executeScript("document.getElementsByClassName(‘"+className+"‘)[0].scrollTop=100000");
4 pause(stepInterval);

JS实现Selenium下拉滚动条到指定元素

标签:页面   argument   xpath   top   body   find   ref   pos   browser   

原文地址:https://www.cnblogs.com/helenqueen/p/8241211.html

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