gpt4 book ai didi

javascript - 如何垂直向下滚动直到显示我想要的文本

转载 作者:行者123 更新时间:2023-11-30 20:23:24 25 4
gpt4 key购买 nike

我试过了

((JavascriptExecutor) driver).executeScript("windows.scrollBy(0,500)");

((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView();", element);

WebElement lastElement = driver.findElement(By.xpath("value of locator"));
int y = lastElement.getLocation().getY();
JavascriptExecutor js = (JavascriptExecutor)driver;
js.executeScript("window.scrollTo(0,"+y+")");
Thread.sleep(3000);

我的窗口的滚动条正在向下移动,但我想滚动我的应用程序的滚动条。 enter image description here

如附图所示,单击 o 设置后,它会打开更多选项,我必须滚动才能看到下面的选项

最佳答案

根据您的代码试验,我认为您非常接近。您需要先诱导WebDriverWait 以使所需的元素可见,然后使用executeScript() 方法scrollIntoView如下:

WebElement lastElement = new WebDriverWait(driver, 20).until(ExpectedConditions.visibilityOfElementLocated(By.xpath("xpath_of_the_desired_element"))).click();
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);",element);

关于javascript - 如何垂直向下滚动直到显示我想要的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51205219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com