我想用 Selenium IDE 在 IFrame 中输入一些东西,但我不知道该怎么做。
非常感谢!
您必须选择 iframe,然后键入
selenium.selectFrame("css=iframe.widget[<a_css_identifier>]");
selenium.type(<your_object_or_text_box>, <typed_content>);
这些语句是在 java 中的,但您应该能够在 IDE中找到selectFrame
和。type
您可以使用 Selenium IDE 命令“selectFrame”在 iframe 内聚焦。使用目标字段输入 iframe id。
尝试
<tr>
<td>selectFrame</td>
<td>edit</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>xpath=//html/body</td>
<td>my text</td>
</tr>