首頁 >Java >java教程 >如何在 Selenium WebDriver (Selenium 2) 中實現頁面滾動?

如何在 Selenium WebDriver (Selenium 2) 中實現頁面滾動?

Susan Sarandon
Susan Sarandon原創
2024-11-23 07:44:10908瀏覽

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn