我想选择一个位于弹出窗口中的 iframe 元素。我可以进入弹出窗口但无法找到 iframe。下面是弹出窗口的html代码。
<html>
<head></head>
<body>
<iframe width="100%" height="100%" border="0" src="/some/url.do?parameter=getData">
<html>
.
.
<table id="ec_table" class="tableRegion" width="20%" cellspacing="1" cellpadding="2"
border="0">
<tr class="even">
<td>
<input type="radio" value="173" name="hier_data_id">
</td>
</tr>
.
.
</html>
</iframe>
</body>
</html>
在这里,我想单击位于 iframe 内的单选按钮。我使用下面的代码在 iframe 中切换,但它没有切换到 iframe。
driver.switchTo().frame(myD.findElement(By.tag("iframe")));
由于 iframe 没有 id,我发现很难在 iframe 中定位元素。
有谁知道我该怎么做..?
提前致谢。