gpt4 book ai didi

selenium - 如何在下拉列表中滚动到隐藏元素?

转载 作者:行者123 更新时间:2023-12-04 14:41:35 25 4
gpt4 key购买 nike

如何使用 selenium, appium 在具有该格式的下拉列表中执行滚动?
我使用标签名称来标识元素,<md-option .../>是下拉列表中的项目。
enter image description here

这是我的 html 代码:

enter image description here

最佳答案

我已经通过这种方式解决了它:

// Create instance of Javascript executor
JavascriptExecutor je = (JavascriptExecutor) driver;
//Identify the WebElement which will appear after scrolling down
WebElement element = driver.findElement(By.tagName("...."));
// now execute query which actually will scroll until that element is not appeared on page.
je.executeScript("arguments[0].scrollIntoView(true);",element);

关于selenium - 如何在下拉列表中滚动到隐藏元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37651651/

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