How can I fill, write in CKEditor with Katalon?
Tamas, did you find a solution for this?
Anything workaround for this?
unable to write anything in ckeditor.
please provide solution for it.
Thanks in advance.
Hi,
Any news for this issue ?
Weâre looking for a UI test solution and Katalon seems a pretty good one, except for that.
Itâs enoying because managing documents is the purpose of our app 
If there is any workaround, let me know.
Thanks in advance.
Hi,
I found a way to handle this.
you must add a Item of type âExecute Javascriptâ and click on Input.
A dialog box will open, for the param name âScriptâ put something like _**CKEDITOR.instances.YourElementId.setData(âYour text to push in ckeditorâ);
**_Good luck.
CED,
I donât understand. Where exactly do I add this item? In my Katalon script?
Somone know how use it?
Hi Tamas!
The easiest way to fill CKEditor element with Katalon is using javascript.
Example :
WebUI.executeJavaScript(âCKEDITOR.instances["â+id+â"].setData("â+this.iniText(id,text)+â")â,null)
I hope this helps
Matyas