I have this in my step definition:
cy.get('div.list-group-item')
.contains(' Test Data')
.trigger('dragstart', { dataTransfer });
cy.get("tbody[role='rowgroup']").eq(1)
.trigger('drop', { dataTransfer });
When I ran it on my local via interactive mode, I don’t get any error, but it’s not dropping the item to my target element. I tried asserting if both elements are ‘visible’ and they are, but mouse is just pointing the element to drag and the element where to drop. I tried to install the plugin Cypress drag-and-drop, but just getting an infinite loop there when dropping the element.