无法使用selenium ide在WYSIWYG编辑器中键入文本

时间:2014-01-23 10:13:18

标签: javascript selenium selenium-ide

我在wysiwyg编辑器中输入文本时遇到问题。 我尝试使用以下代码

storeEval
this.browserbot.findElement("class=wysihtml5-sandbox";).contentWindow.document.body.innerHTML='test text';
MyVar

但它不适合我,有一件事我想告诉你用firebug javascript控制台我可以使用下面的javascript插入文本

tinyMCE.get("Id of the editor").setContent("Test TExt")

但是此命令在selenium ide

中不起作用

你有解决方法吗?

1 个答案:

答案 0 :(得分:1)

我解决了你的问题。我也在使用这个命令。

<tr>
    <td>runScript</td>
    <td>tinyMCE.activeEditor.setContent('Enter your text here')</td>
    <td></td>
</tr>