由于它位于页面下方,当我们向下滚动时,我们可以看到元素,如何处理这种情况?
答案 0 :(得分:0)
您可以使用以下方法。它将向下滚动,直到到达给定的元素。
public static void scrollToReachAnElement(String xpath){
try {
WebElement element = d.findElement(By.xpath(xpath));
((JavascriptExecutor) d).executeScript("arguments[0].scrollIntoView(true);", element);
Thread.sleep(3000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
答案 1 :(得分:0)
您可以使用Selenium驱动程序的以下功能滚动到视图中
executeScript(JavaScript code here to scroll down)
JavaScript代码可以是
"arguments[0].scrollIntoView()", your16thWebElement
或
"window.scrollTo(0, document.body.scrollHeight);"
或其他任何向下滚动的JavaScript代码