How to implement drag and drop in cypress test?
问题 I am struggling to test drag and drop with Cypress and Angular Material Drag and Drop. So the goal is to move "Get to work" from Todo to Done. I have created the following test, that should make it easy for you to reproduce: You can play with the Stackblitz here. describe('Trying to implement drag-n-drop', () => { before(() => { Cypress.config('baseUrl', null); cy.viewport(1000, 600); cy.visit('https://angular-oxkc7l-zirwfs.stackblitz.io') .url().should('contain', 'angular') .get('h2').should