drag-mock icon indicating copy to clipboard operation
drag-mock copied to clipboard

Trigger HTML5 drag & drop events for testing

Results 4 drag-mock issues
Sort by recently updated
recently updated
newest added

Hi, I'm unsure on how to add the functionality from inside a test. `dragMock.extendWebdriver(webdriver);` and `dragMock.loadLibrary(webdriver);` assumes I have a `webdriver`, but afaik I only have a `browser`? ``` js...

I am trying to make your mock work with webdriver.io, here is my minimal test case: ``` javascript var dragMock = require('drag-mock'); var webdriverio = require('webdriverio'); var options = {...

If I want to test what happens if I drag something from outside the current browser window, my drag flow isn't going to start with `dragStart`. If that's a supported...