4

我想用 Selenium IDE 在 IFrame 中输入一些东西,但我不知道该怎么做。

非常感谢!

4

3 回答 3

7

您必须选择 iframe,然后键入

selenium.selectFrame("css=iframe.widget[<a_css_identifier>]");
selenium.type(<your_object_or_text_box>, <typed_content>);

这些语句是在 java 中的,但您应该能够在 IDE中找到selectFrame和。type

于 2011-09-22T20:37:12.130 回答
2

您可以使用 Selenium IDE 命令“selectFrame”在 iframe 内聚焦。使用目标字段输入 iframe id。

于 2012-10-16T22:21:57.633 回答
0

尝试

<tr> 
    <td>selectFrame</td> 
    <td>edit</td> 
    <td></td> 
</tr> 
<tr> 
    <td>type</td> 
    <td>xpath=//html/body</td> 
    <td>my text</td> 
</tr> 
于 2014-01-30T16:24:44.837 回答