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 has been archived by the owner on May 7, 2021. It is now read-only.
This will be needed for tests to validate re-ordering the backlog through drag and drop of workitems in the UI.
http://stackoverflow.com/questions/25664551/how-to-simulate-a-drag-and-drop-action-in-protractor
elem = Element you want to move;
target = Element where you want to drop elem;
For WebdriverJS:-
browser.driver.actions().dragAndDrop(elem,target).perform();
For Protractor:-
browser.actions().dragAndDrop(elem,target).perform();
browser.actions().dragAndDrop(elem, target).perform();
Where dragAndDrop behind the scenes is mouseDown + mouseMove + mouseUp:
https://github.com/SeleniumHQ/selenium/blob/ab1e647d0fc8fc39e6b00ae94321ab228b6728f2/javascript/webdriver/actionsequence.js#L218-L229
The text was updated successfully, but these errors were encountered: