當我試着運行下面的代碼時,visibilityOfElementLocated
工作得很好,webdriver等待給定時間的元素。visibilityOfElementLocated vss visibilityOf
dr.get("http://www.seleniumframework.com/Practiceform/");
WebDriverWait wait=new WebDriverWait(dr,30);
WebElement we = wait.until(ExpectedConditions.visibilityOfElementLocated(By.linkText("Element5")));
,但如果我使用visibilityOf
以同樣的方式,它給了我
NoSuchElementException異常
WebElement we = wait.until(ExpectedConditions.visibilityOf(dr.findElement(By.linkText("Element3"))));
你能解釋我爲什麼我得到這個例外?