如何利用 Java 中的 Selenium 滚动浏览网页?
我们可以利用 Java 中的 Selenium 滚动浏览网页。Selenium 无法直接处理滚动。它借助 Javascript 执行程序执行滚动操作直到某一个元素。
首先,我们必须找到需要滚动的目标元素。接下来,我们使用 Javascript 执行程序来运行 Javascript 命令。executeScript 方法用于在 Selenium 中运行 Javascript 命令。我们使用 Javascript 中的 scrollIntoView 方法,并将 true 作为方法的一个参数。
语法 −
WebElement elm = driver.findElement(By.name("name")); ((JavascriptExecutor) driver) .executeScript("arguments[0].scrollIntoView(true);", elm);
示例
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import java.util.concurrent.TimeUnit; import org.openqa.selenium.JavascriptExecutor; public class ScrollAction{ public static void main(String[] args) { System.setProperty("webdriver.gecko.driver", "C:\Users\ghs6kor\Desktop\Java\geckodriver.exe"); WebDriver driver = new FirefoxDriver(); //implicit wait driver.manage().timeouts().implicitlyWait(4, TimeUnit.SECONDS); //launch application driver.get ("https://tutorialspoint.com/about/about_careers.htm "); // identify element WebElement n=driver.findElement(By.xpath("//*[text()='Contact']")); // Javascript executor ((JavascriptExecutor)driver) .executeScript("arguments[0].scrollIntoView(true);", n); } }
输出
广告