我试图找到等待特定字符串出现在页面中的最干净的代码。我现在最好的就是相当笨重
new Wait() {
@Override
public boolean until() {
return !webDriver.findElement(By.tagName("html"))
.getText().contains("please choose another");
}
}.wait("wait failed!", 60000);
有没有更优雅的方式来做到这一点?