gpt4 book ai didi

selenium - 如何使用 Java 在 Selenium Webdriver 中使用 clickandwait?

转载 作者:行者123 更新时间:2023-12-02 14:46:16 26 4
gpt4 key购买 nike

我正在尝试单击该对象,以显示弹出的值列表。

我使用了以下脚本,但无法填充列表值弹出窗口。

Driver.findElement(By.xpath(OR.getProperty(Object))).click();
Thread.sleep(1000L);

还有其他方法可以点击并等待对象吗?

最佳答案

Driver.findElement(By.xpath(OR.getProperty(Object))).click();
WebDriverWait wait = new WebDriverWait(Driver, timeoutInSeconds);
wait.until(ExpectedConditions.elementToBeClickable(By.id("yourId")));

还有其他条件,例如 visibilityOf,因此请选择最适合您的条件 - documentation here .

关于selenium - 如何使用 Java 在 Selenium Webdriver 中使用 clickandwait?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20043792/

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