首頁  >  文章  >  Java  >  如何使用 Java 在 Selenium WebDriver 中實作頁面捲動?

如何使用 Java 在 Selenium WebDriver 中實作頁面捲動?

Linda Hamilton
Linda Hamilton原創
2024-11-19 00:20:02345瀏覽

How do I implement page scrolling in Selenium WebDriver using Java?

使用 Java 在 Selenium WebDriver (Selenium 2) 中進行頁面滾動

頁面滾動在自動化具有不同內容長度的網頁方面發揮著至關重要的作用。 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)");

捲動到底部頁面

要捲動到頁面底部,您有幾個選項:

使用JavaScript 執行器:

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機器人課程:

以上是如何使用 Java 在 Selenium WebDriver 中實作頁面捲動?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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