我使用水豚测试tinymce形式有困难.我正在使用
tinymce-rails并且在我的表单中有7个编辑器.我也使用asciimath插件与tinymce.
一切正常,但我无法编写测试来填写tinymce编辑器.
within_frame("content_ifr") do editor = page.find_by_id('tinymce') editor.native.send_keys 'test' end
问题是当我运行以下内容时:
editor.native.clear # works,clear the editor area,I'm testing this with pry editor.native.send_keys :tab # works,moves focus to next input editor.native.send_keys 'test' # returns "",nothing happens,nothing in editor
如此清晰,send_keys:tab按预期工作.但我不能发送任何字符串. send_keys函数总是返回空字符串,当我使用pry进行测试时没有任何反应.
这里出了什么问题?以及如何调试/调查问题?
谢谢.