Info:
- Silk Test 18.5 Standard Edition
- Chrome 62
Drag and drop was not working for me. I thought something was wrong so I've tried with a simpler example: W3 Schools Drag and Drop example. It's not working either. Maybe I'm doing something wrong...
In the example bellow the image is not being dragged into the div. The test passes.
Test case:
@Test
public void dndTest() {
//Open www.w3schools.com/.../tryit.asp
desktop.<DomElement>find("/BrowserApplication//BrowserWindow//*[@id='drag1']").pressMouse(1);
desktop.<DomElement>find("/BrowserApplication//BrowserWindow//*[@id='div1']").mouseMove();
desktop.<DomElement>find("/BrowserApplication//BrowserWindow//*[@id='div1']").releaseMouse();
}