我的 Dom 结构就像
<iframe id="frame1">
<input type="button" onclick="openModalPopup"></input>
</iframe>
当我在 iframe 内点击此按钮时,selenium 打开 modalpopup ,但无法将控件移到那里?
有人可以帮忙吗?
我的 Dom 结构就像
<iframe id="frame1">
<input type="button" onclick="openModalPopup"></input>
</iframe>
当我在 iframe 内点击此按钮时,selenium 打开 modalpopup ,但无法将控件移到那里?
有人可以帮忙吗?
切换到默认帧(从当前帧移除焦点),然后尝试将控件移动到弹出窗口。那应该行得通。
http://release.seleniumhq.org/selenium-core/1.0.1/reference.html。在参考中搜索 iframe。您需要 selectFrame..只有这样您才能与之交互。