如何使用Java中的Selenium WebDriver向下滚动?

2023年 8月 28日 35.3k 0

我们可以使用Selenium向下滚动。Selenium无法直接处理滚动操作,它需要借助Javascript Executor来执行滚动操作,直到滚动到指定元素。

首先,我们需要定位到要滚动到的元素。接下来,我们将使用Javascript Executor来运行Javascript命令。在Selenium中,使用executeScript方法来运行Javascript命令。我们将借助Javascript中的scrollIntoView方法,并将true作为参数传递给该方法。

语法

WebElement elm = driver.findElement(By.name("name"));
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);",elm);

登录后复制

Example

的中文翻译为:

示例

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.JavascriptExecutor;
public class ScrollAction{
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver",
"C:Usersghs6korDesktopJavachromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.tutorialspoint.com/about/about_careers.htm ");
driver.manage().timeouts().implicitlyWait(4, TimeUnit.SECONDS);
// identify element
WebElement n=driver.findElement(By.xpath("//*[text()='Contact']"));
// Javascript executor
((JavascriptExecutor)driver).executeScript("arguments[0].scrollIntoView
(true);", n);
}
}

登录后复制

输出

如何使用Java中的Selenium WebDriver向下滚动?

以上就是如何使用Java中的Selenium WebDriver向下滚动?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论