我用的visibilityOfElementLocated
如何等待子元素的visibilityOfElementLocated?
語法我有一個錶行的元素掙扎,現在我需要在此行中搜索一個元素像row.findElement(xxx)
下面是語法,我們使用的定位元素(父)直接在頁
WebDriverWait wait = new WebDriverWait(driver, 90L);
WebElement data=wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath
("./td[" + columnIdx + "]");
所以問題是如何使用上面等待tableRow? (例如tableRow。(wait.until))
謝謝!
謝謝Anuj。但這不是我正在尋找的。我有一個固定的父元素。現在我想在這個父元素上等待子元素。 –
你能提供這個html嗎? –
對不起,但不行。類似於@Andersson的下面的答案。這就像父 - > wait.until.condition.child-locator –