标题: 求助为何会报 no such element: Unable to locate element: [打印本页] 作者: 测试积点老人 时间: 2021-3-25 14:51 标题: 求助为何会报 no such element: Unable to locate element: 求助为何会报 no such element: Unable to locate element: {"method":"css selector","selector":"[testid="editItem"]"} 错误代码:
public WebElement findElement(By by){
if (!waitEle(by)){
throw new RuntimeException("cannot find ele : " + by);
}
return webElement.findElement(by);
}
private Boolean waitEle(By by) {
if (by == null){
return false;
}
WebDriverWait wait = new WebDriverWait(driver, waitTimeDefault);