HTML Drag and Drop Simulator for E2E testing.
Now, WebDriver cannot handle HTML Drag and Drop. This module can simulate the HTML Drag and Drop by using the Execute Script command.
This module is like rcorreia/drag_and_drop_helper.js, but it does not require jQuery.
npm install --save-dev html-dnd
The first two arguments are required and are the draggable
and droppable
elements or reference to elements depends on the library the script runs in. see examples below.
The third argument is dndSimulateConfig
and it is mandatory.
It includes two mandatory configs: dragOffset
and dropOffset
.
If present, they will offset the mouse by the specified position at the relevant DND events.
Otherwise, the mouse will be centered for the omitted configs.
Both of the configs expect an array with the size of 2 that determines offset left
and top
from the top and left of the relevant elements.
var dndSimulateConfig = {
dragOffset: [100, 200],
dropOffset: [20, 30]
};
var dragAndDrop = require('html-dnd').code;
var webdriver = require('selenium-webdriver');
var By = webdriver.By;
var driver = new webdriver.Builder()
.forBrowser('firefox')
.build();
driver.get('http://example.com');
var draggable = driver.findElement(By.id('draggable'));
var droppable = driver.findElement(By.id('droppable'));
var dndSimulateConfig = {
dragOffset: [100, 200],
dropOffset: [20, 30]
};
driver.executeScript(dragAndDrop, draggable, droppable, dndSimulateConfig);
driver.quit();
var dragAndDrop = require('html-dnd').codeForSelectors;
var webdriverio = require('webdriverio');
var options = { desiredCapabilities: { browserName: 'chrome' } };
var client = webdriverio.remote(options);
client
.init()
.url('http://example.com')
.execute(dragAndDrop, '#draggable', '#droppable')
.end();
var dragAndDrop = require('html-dnd').codeForSelectors;
module.exports = {
'drag and drop': function(browser) {
var dndSimulateConfig = {
dragOffset: [20, 30]
};
browser
.url('http://example.com')
.execute(dragAndDrop, ['#draggable', '#droppable', dndSimulateConfig])
.end();
}
};
import {code as dragAndDrop, DndSimulateConfig} from 'html-dnd';
var dndSimulateConfig: DndSimulateConfig = {
dropOffset: [20, 20]
};
driver.executeScript(dragAndDrop, draggable, droppable, dndSimulateConfig);
MIT (c) 2017 Kuniwak