在Selenium 1 中,頁面滾動是使用selenium.getEval("scrollBy(0, 250) " 實作的) 方法。在Selenium 2 中,等效代碼如下:
WebDriver driver = new FirefoxDriver(); JavascriptExecutor jse = (JavascriptExecutor)driver; // Scroll down jse.executeScript("window.scrollBy(0,250)"); // OR jse.executeScript("scroll(0, 250);"); // Scroll up jse.executeScript("window.scrollBy(0,-250)"); // OR jse.executeScript("scroll(0, -250);");
使用JavaScriptExecutor:
jse.executeScript("window.scrollTo(0, document.body.scrollHeight)");
使用按鍵.CONTROL 鍵.END:
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL, Keys.END);
使用Java 機器人類:
Robot robot = new Robot(); robot.keyPress(KeyEvent.VK_CONTROL); robot.keyPress(KeyEvent.VK_END); robot.keyRelease(KeyEvent.VK_END); robot.keyRelease(KeyEvent.VK_CONTROL);
以上是如何使用 WebDriver (Java) 在 Selenium 2 中捲動頁面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!