WebDriver中页面滚动(scrolling)

2014 from—http://blog.csdn.net/tanzhangwen/article/details/18733557

这里面主要由链接(http://selenium-tutorial.blogspot.sg/2013/02/scroll-page-webdriver.html)整理过来,主要回答了如何用webdriver来滚动页面,滚上滚下,滚到指定元素以及怎么识别滚动条等。

1.  利用selenium中的focus(locator)函数实现(Link)

  1. @Test
  2. public void testFocus() throws Exception {
  3.     selenium.open(“/”);
  4.     selenium.windowMaximize();
  5.     selenium.type(“q”“selenium wiki”);
  6.     selenium.click(“btnG”);
  7.     //Waiting for an element
  8.     for (int second = 0;; second++) {
  9.         if (second >= 60) fail(“timeout”);
  10.         try {
  11.             if (selenium.isElementPresent(“link=Selenium Overview – Wiki – Liferay.com”))
  12.                 break;
  13.             } catch (Exception e) {}
  14.         Thread.sleep(1000);
  15.         }
  16.     //Set focus on element –then page will scroll down –focus will be on that element
  17.     selenium.focus(“link=Selenium Overview – Wiki – Liferay.com”);
  18.     //To capture a screenshot
  19.     selenium.captureScreenshot(“c:/naga/screenshot.png”);
  20.     Thread.sleep(10000);
  21. }

 

2. 利用webdriver执行脚本直接滚动到指定坐标位置(LinkLink2)

  1. public static void test1() throws InterruptedException{
  2.     WebDriver driver = new FirefoxDriver();
  3.     driver.get(“http://www.nytimes.com/”);
  4.     ((JavascriptExecutor)driver).executeScript(“scrollTo(0,3000)”);
  5.      Thread.sleep(5000L);
  6. }
  1. ((JavascriptExecutor) driver).executeScript(“scroll(0,250);”);  //-250
  2. ((JavascriptExecutor) driver).executeScript(“scroll(250,0);”);
  3. ((JavascriptExecutor) driver).executeScript(“window.scrollBy(0,250)”“”);
  4. ((JavascriptExecutor) driver).executeScript(“arguments[0].scrollIntoView();” ,webElement);

 

3. 判断是否有滚动条可以比较窗口高度和滚动条高度(Link)

  1. Selenium.type(xpath of the text-area element,text value);
  2. String str1=Selenium.getEval(“this.browserbot.getCurrentWindow().document.getElementsByClassName(‘cssclassname’)[0].clientHeight”);
  3. String str = Selenium.getEval(“this.browserbot.getCurrentWindow().document.getElementsByClassName(‘cssclassname’)[0].scrollHeight”);
  4. int clientHeight = Integer.parseInt(str1);
  5. int scrollHeight = Integer.parseInt(str);
  6. if(clientHeight < scrollHeight){
  7.     System.out.println(“Vertical scrollbar appears”);
  8. }else{
  9.     System.out.println(“Vertical scrollbar is not appear”);
  10. }

 

4. 滚动到目标元素的纵坐标位置(Link)

  1. public void scrollAndClick(By by)
  2. {
  3.    WebElement element = driver.findElement(by);
  4.    int elementPosition = element.getLocation().getY();
  5.    String js = String.format(“window.scroll(0, %s)”, elementPosition);
  6.    ((JavascriptExecutor)driver).executeScript(js);
  7.    element.click();
  8. }

5. 滚动到指定元素位置

  1. WebElement element = webdriver.findElement(locator);
  2. ((Locatable)element).getLocationOnScreenOnceScrolledIntoView();

 

发现最新的webdriver代码已改,上面的函数已经没有了,经过试验一下代码可以替换:

  1. Coordinates coor = ((Locatable)element).getCoordinates();
  2. coor.inViewPort();

 

上一篇
下一篇