我是自动化的新手,我想知道如何使用Selenium和Java滚动到当前页面上的Web元素.
我尝试了很多在*中描述的方法.但是无法解决我的问题.
我尝试的解决方案:
WebElement element = driver.findElement(By.id("id_of_element"));
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);", element);
Thread.sleep(500);
解决方法:
您可以使用Selenium提供的Actions类.
public void scrollToElement(WebElement element){
Actions actions = new Actions(driver);
actions.moveToElement(element);
actions.perform();
WebDriverWait wait = new WebDriverWait(driver, 60);
wait.until(ExpectedConditions.visibilityOf(element));
}
在这里,我添加了一个明确的等待,它将等待直到Web元素可见.最长等待时间为60秒.如果Web元素在60秒内不可见,则将引发异常.您可以通过更改此行来增加等待时间.
WebDriverWait wait = new WebDriverWait(driver, 60);
希望这可以帮助.