特定の文字列がページに表示されるのを待つための最もクリーンなコードを見つけようとしています。私が今持っている最高のものは、かなり不格好です
new Wait() {
@Override
public boolean until() {
return !webDriver.findElement(By.tagName("html"))
.getText().contains("please choose another");
}
}.wait("wait failed!", 60000);
これを行うよりエレガントな方法はありますか?