I am trying to simulate a drag and drop event that is executed using jQuery on my site. Manual execution of βdrag and dropβ using native JQuery βworksβ, but after the form where the drag event is located is sent, nothing happens because there are listener events attached to the drag and drop events, and these listeners are not activated my "manual" movements. I am looking for something similar to Testing jQuery Drag and Drop and Droppable with Selenium .
This is an example of code that works only visually, but does not call drag & drop event handlers:
// "Simulate" drag&drop casper.evaluate(function() { det = jQuery("table#draggableview_secondary_touts_block_order_1 tbody tr").last().detach(); jQuery("table
source share