I've been struggling with this issue - recently introduced Froala editors to a page on our site, and I'm updating the Cypress tests so that they'll pass. The problem I'm having is how to 'type' or even set invisibly the text in these editors.
For example, in the browser dev tools console I can run this:
$('#successfullySubmittedTextArea')[0]['data-froala.editor'].html.insert('new text!');
How do I translate this over to my Cypress test? I've tried:
Cypress.$('#successfullySubmittedTextArea')[0]['data-froala.editor'].html.insert('new text!');
which doesn't error, but doesn't work. Please help, sure I'm missing something fundamental and obvious!