为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 Java 在 selenium 中滚动网页?

如何使用 Java 在 selenium 中滚动网页?

SMILET 2022-07-06 18:49:56
我正在尝试滚动使用 React JS 构建的页面。即使在使用js.executeScript("scroll(0, 250);");不工作并尝试滚动方法直到某些元素可见性之后,页面也不会滚动。
查看完整描述

2 回答

?
撒科打诨

TA贡献1934条经验 获得超2个赞

您可以使用我编写的以下方法滚动到特定元素。您只需要传递 Driver 对象。


// Method to scroll down to specific element

public static void scrollToElement(WebDriver driver) throws InterruptedException {

String key = "";

WebElement element = null;

JavascriptExecutor js = (JavascriptExecutor) driver;

element = driver.findElement(By.xpath(locator));

// This will scroll the page till the element is found

js.executeScript("arguments[0].scrollIntoView(true);", element);

Thread.sleep(2000);

}


查看完整回答
反对 回复 2022-07-06
?
当年话下

TA贡献1890条经验 获得超9个赞

你能试试这个吗,我希望window你的代码中缺少全局变量


// scroll vertically

js.executeScript("window.scrollTo(0, 1000);") 


// scroll horizontally

js.executeScript("window.scrollTo(1000, 0);") 



//scroll to particular element

WebElement Element = driver.findElement(By.id("someID"));

js.executeScript("arguments[0].scrollIntoView();", Element);


查看完整回答
反对 回复 2022-07-06
  • 2 回答
  • 0 关注
  • 173 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信