Fixed cypress drag command to behave correctly with d3-drag

This commit is contained in:
Furkan Kalaycioglu
2022-04-27 20:40:38 +03:00
parent f075e0742e
commit 5e501fab06
+9 -5
View File
@@ -24,10 +24,14 @@
// -- This is will overwrite an existing command --
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
Cypress.Commands.add('drag', (selector, { x, y }) => {
return cy.get(selector)
.trigger('mousedown', { which: 1 })
.trigger('mousemove', { clientX: x, clientY: y })
.trigger('mouseup', { force: true });
return cy
.window()
.then((window) =>
cy
.get(selector)
.trigger('mousedown', { which: 1, view: window })
.trigger('mousemove', { clientX: x, clientY: y, force: true })
.trigger('mouseup', { view: window })
);
});