首页 > Java > java教程 > 正文

如何在 Selenium WebDriver (Selenium 2) 中实现页面滚动?

Susan Sarandon
发布: 2024-11-23 07:44:10
原创
817 人浏览过

How do you achieve page scrolling in Selenium WebDriver (Selenium 2)?

Selenium WebDriver 中的页面滚动(Selenium 2)

在 Selenium RC 中,页面滚动是使用 selenium.getEval("scrollBy(0) 执行的,250)”)。要在 Selenium WebDriver (Selenium 2) 中实现相同的功能,请使用 JavaScriptExecutor 使用以下等效代码:

WebDriver driver = new FirefoxDriver();
JavascriptExecutor jse = (JavascriptExecutor)driver;
jse.executeScript("window.scrollBy(0,250)");
登录后复制

滚动选项

除了按具体金额,页面有多种选择滚动:

  • 向上滚动:
jse.executeScript("window.scrollBy(0,-250)");
登录后复制
  • 滚动到底部:

使用JavaScript执行器:

jse.executeScript("window.scrollTo(0, document.body.scrollHeight)");
登录后复制

使用Keys.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);
登录后复制

以上是如何在 Selenium WebDriver (Selenium 2) 中实现页面滚动?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板