
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@uxpin/html-dnd
Advanced tools
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
FAQs
HTML Drag and Drop Simulator for E2E testing
The npm package @uxpin/html-dnd receives a total of 11 weekly downloads. As such, @uxpin/html-dnd popularity was classified as not popular.
We found that @uxpin/html-dnd demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 31 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.