drag-mock
drag-mock copied to clipboard
Trigger HTML5 drag & drop events for testing
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...