Tinymce editor is used in the app. The rte toolbar is activated only if i click on the text area. I am able to focus on the Text Area using document.body.focus but still the rte toolbar doesn't show up.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
WYSIWYG Editors has an example on how to automate TinyMCE Editor with watir-webdriver gem. |
|||||||||
|
|
The Rte toolbar gets enabled only after a mouse click event. So I used left mouse click event to enable the RTE Toolbar. b=WIN32OLE.new("AutoItX3.Control") b.mouseclick "left",200,550 And it solved my issue. |
|||
|
|