我在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
中不起作用你有解决方法吗?
答案 0 :(得分:1)
我解决了你的问题。我也在使用这个命令。
<tr>
<td>runScript</td>
<td>tinyMCE.activeEditor.setContent('Enter your text here')</td>
<td></td>
</tr>