Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.