我正在尝试调用弹出窗口,但总是会收到错误,例如“在缓存中找不到元素 - 可能是自查找以来页面已更改”
有人可以帮忙吗?
我的HTML代码就是这个
<td class="tdLabel"><label for="productName" class="label">Product Name<span class="required">*</span>:</label>
</td>
<td>
<input type="text" name="accountVO.productName" value="" readonly="readonly" id="productName" style="height:14px;"/>
</td>
</tr>
</td>
<td>
<img id="searchimage-size" src="images/old-edit-find.png" alt="SEARCH" onclick='popup(document.forms[0].product);'/>
</td>
</tr>
我的硒代码就是这个
WebDriver browser = null;
String parentWindowHandle = browser.getWindowHandle();
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
driver.findElement(By.id("searchimage-size")).click();
请帮帮我......我在等待回复