Hi,
I've added an editor as following
<kendo-editor formControlName="note" [iframe]="false"></kendo-editor>
I'm trying to interact with it while testing with Cypress but no luck, i.e the following doesn't work
const input = cy.get('kendo-editor[formcontrolname=note]');
input.type('sample text');
the error is
Timed out retrying after 4000ms: cy.type() failed because this element:
<kendo-editor _ngcontent-yle-c1049="" formcontrolname="note" style="height: 180px;" _nghost-yle-c961="" ng-reflect-name="note" ng-reflect-iframe="false" dir="ltr" ariadisabled="true" class="k-editor k-state-disabled ng-untouched ng-pristine">...</kendo-editor>
has CSS pointer-events: none
pointer-events: none prevents user mouse interaction.
Could you please provide some hints on how to do this? Do we have guidelines/howtos for Cypress e2e testing of Kendo UI for Angular?
Thanks