Skip to content
forked from zubivan/html-dnd

HTML Drag and Drop Simulator for E2E testing

License

Notifications You must be signed in to change notification settings

PowToon/html-dnd

This branch is 7 commits ahead of zubivan/html-dnd:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d9172cd · Dec 5, 2017

History

61 Commits
May 1, 2017
May 1, 2017
May 10, 2016
May 10, 2016
Dec 5, 2017
May 1, 2017
May 3, 2016
Feb 26, 2017
May 1, 2017
Apr 12, 2016
Mar 23, 2017
May 3, 2016
Dec 5, 2017
Mar 23, 2017
May 3, 2016
Dec 5, 2017

Repository files navigation

HTML Drag and Drop Simulator

Circle CI npm version

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.

Install

npm install --save-dev html-dnd

Compatibility

Sauce Test Status

Usage

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]
};

For selenium-webdriver

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();

For WebdriverIO

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();

For Nightwatch.js

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();
  }
};

With Typescript

import {code as dragAndDrop, DndSimulateConfig} from 'html-dnd';

var dndSimulateConfig: DndSimulateConfig = {
  dropOffset: [20, 20]
};

driver.executeScript(dragAndDrop, draggable, droppable, dndSimulateConfig);

See also

License

MIT (c) 2017 Kuniwak

About

HTML Drag and Drop Simulator for E2E testing

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 61.3%
  • JavaScript 38.7%