witty-wolf-77896
03/16/2023, 3:22 PMdescribe('CKEditor 5', () => {
it('types text into a CKEditor 5 editor instance and tests to make sure the text equals whatever is typed in', () => {
cy.visit('https://ckeditor.com/ckeditor-5/demo/feature-rich/')
cy.get('div[data-demo-type="feature-rich"] div[contenteditable]').type('{ctrl+a}{del}')
cy.get('div[data-demo-type="feature-rich"] div[contenteditable]').type('Hello CKEditor')
cy.get('div[data-demo-type="feature-rich"] div[contenteditable]').invoke('text').should('eq', 'Hello CKEditor')
})
})