gpt4 book ai didi

javascript - 如何向上滚动到一个元素并单击 Selenium ?

转载 作者:行者123 更新时间:2023-11-30 19:17:02 25 4
gpt4 key购买 nike

我有一个场景,系统需要向上滚动到页面左侧面板中的 webelement,然后单击以执行其他操作。我尝试了以下方法,但都没有用。请建议:

1.

 WebElement element = driver.findElement(By.xpath("element"));
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);", element);
Thread.sleep(500);

2.

WebElement element = driver.findElement(By.xpath("element"));
Actions actions = new Actions(driver);
actions.moveToElement(ele);
actions.perform();

最佳答案

UpDownscrollIntoView() 您必须为 引入 WebDriverWait 的元素visibilityOfElementLocated() 并且您可以使用以下解决方案:

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

关于javascript - 如何向上滚动到一个元素并单击 Selenium ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57886380/

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