ckeditor / ckeditor4-angular

Official CKEditor 4 Angular component.
Other
55 stars 32 forks source link

Fix e2e tests #122

Closed jacekbogdanski closed 4 years ago

jacekbogdanski commented 4 years ago

Typing tests are partially caused by protractor/selenium upstreams, i.e.

https://github.com/angular/protractor/issues/2019 https://github.com/angular/protractor/issues/3196

and the fact that CKEditor 4 updates its content asynchronously. I've provided as a simple fix for the issue, but it requires resigning from sending special keystrokes like bold which also are handled incorrectly. Those keystrokes don't seem to be important for test validation.

Form issue is caused by an invalid editable query where it's embedded inside an iframe. Instead of doing some query gymnastic, I've just changed the sample to use divarea editor.

Closes #118