gpt4 book ai didi

java - Selenium webdriver java等待元素存在

转载 作者:行者123 更新时间:2023-11-30 08:34:10 25 4
gpt4 key购买 nike

我试图让函数等待 Selenium 中的元素。

private WebElement  waitIsClickable(By by, int n) throws Exception{

WebDriverWait wait= new WebDriverWait(driver,/*seconds=*/ n);
wait.until(ExpectedConditions.elementToBeClickable(by));

return driver.findElement(by);
}

但是当我想使用它的时候:

waitIsClickable(By.id("logIn"), 20).click();

我得到一个错误:

Error:(1057, 20) java: method waitIsClickable in class Functions cannot be applied to given types; required: org.openqa.selenium.By,int found: org.openqa.selenium.By reason: actual and formal argument lists differ in length

最佳答案

你确定这是错误所在的行吗?你有这个方法的任何其他调用吗?根据错误描述,您似乎正在尝试这样进行调用:

waitIsClickable(By.id("logIn")).click();

关于java - Selenium webdriver java等待元素存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39015905/

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