You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I tried to use protractor to simulate dragAndDrop, but it did not work, and there was no any error about it, below is my test code:
this.dragAndDropDashboardTab = function(source, target) {
// Way-1: it did not work
// browser.actions().dragAndDrop(source, target).perform();
// browser.actions()
// .mouseDown(source)
// .mouseMove(target)
// .mouseUp()
// .perform();
// Way-2: it did not work
// browser.actions().dragAndDrop(source, target).perform();
};
Who will tell me the work around? And would you like to help me fix this issue?