SeleniumWebDriver:如何等待iframe完全加载?可以单击iframe元素文本框id=“div_4_1_



问题:我正在测试一个带有iframe的页面,该页面的内容由JavaScript动态生成。我必须等待iframe被完全加载,以确保我需要的所有元素都存在。

 <iframe frameborder="0" style="border: 0px none; width: 100%; height: 290px; min-width: 0px; min-height: 0px; overflow: auto;" dojoattachpoint="frame" title="Fill Quote" src=" =1&zTaskId=9309&zResetContext=true&coachDebugTrace=none>
   ------------------------------------------------
  <input id="div_4_1_1_1_1_1_2-in" class="p-field span12" type="text">

我试过下面的代码,

driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
WebDriverWait wait = new WebDriverWait(driver, 4000);
wait.until(ExpectedConditions.visibilityOfElementLocated((By.id("div_4_1_2_1_1-lnk"))));

但它不起作用。这个iframe只动态生成了他的标题

输出:

Nov 22, 2013 2:52:03 PM org.openqa.selenium.support.ui.ExpectedConditions findElement
WARNING: WebDriverException thrown by findElement(By.id: div_4_1_2_1_1-lnk)
org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the      remote browser. It may have died.

Selenium有一个预期的条件来解决您的问题:

ExpectedConditions.frameToBeAvailableAndSwitchToIt(locator)

我建议你阅读这个链接和这个

最新更新