页面滚动在自动化具有不同内容长度的网页方面发挥着至关重要的作用。 Selenium 1 (Selenium RC) 和 Selenium 2 (WebDriver) 提供不同的页面滚动方法。让我们探索 Selenium WebDriver 的等效方法:
在 Selenium 1 中,页面滚动的代码是:
selenium.getEval("scrollBy(0, 250)");
执行相同的操作在 Selenium 2 (WebDriver) 中,使用以下代码:
WebDriver driver = new FirefoxDriver(); JavascriptExecutor jse = (JavascriptExecutor)driver; jse.executeScript("window.scrollBy(0,250)");
或者,您可以使用:
jse.executeScript("scroll(0, 250);");
要向上滚动,只需对像素值取负即可:
jse.executeScript("window.scrollBy(0,-250)");
要滚动到页面底部,您有多种选择:
使用 JavaScriptExecutor:
jse.executeScript("window.scrollTo(0, document.body.scrollHeight)");
使用 Ctrl 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);
以上是如何使用 Java 在 Selenium WebDriver 中实现页面滚动?的详细内容。更多信息请关注PHP中文网其他相关文章!