标题: 求助为何会报 no such element: ? [打印本页] 作者: 测试积点老人 时间: 2021-3-4 10:16 标题: 求助为何会报 no such 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);