我想等到一個js腳本返回true,我使用的是不是編譯和投擲錯誤不是抽象的,不重寫抽象方法適用(對象)的功能
is not abstract and does not override abstract method apply(Object) in Function
這裏的代碼是代碼
WebDriverWait wait = new WebDriverWait(driver, 10);
boolean isFound = wait.until(new ExpectedCondition(){ //here ERROR
public Boolean apply(WebDriver d){
JavascriptExecutor js = (JavascriptExecutor) d;
return (Boolean) js.executeScript("return true");
}
});
我試圖從 http://www.tarnowski.se/2011/09/11/converting-selenium-waitforcondition-to-webdriverwait/
嗯,它不_覆蓋'應用(對象)'。 –
那我該怎麼辦? – coure2011
什麼是令人困惑的消息,告訴你到底是什麼問題? –