Using Watir Webdriver I am able to detect that a WYSIWYG ckeditor exists, however any attempt to send_keys to it outputs a blank string?
I am able to run the test above with the ckeditor without issues:
require "watir-webdriver"
b = Watir::Browser.new :firefox
b.goto "http://ckeditor.com/demo"
b.frame(:title => 'Rich text editor, editor1, press ALT 0 for help.').send_keys "hello world"
I am however, having an issue running this code for my own test:
b.frame(:title, "Rich text editor, currentItem.contentText, press ALT 0 for help.").exists?
=> true
b.frame(:title, "Rich text editor, currentItem.contentText, press ALT 0 for help.").send_keys 'text'
=>""
Nothing is rendered to WYSIWYG. Other frames on webpage allow me to edit text fields. Any thoughts?