我们可以使用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向下滚动?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!