nightmare-upload

0.1.1 • Public • Published

nightmare-upload

Grants the ability to add files to file inputs for Nightmare 2.x, just like the good ol' days of Nightmare 1.x.

Usage

Require the library, passing Nightmare as a reference to add the plugin actions:

var Nightmare = require('nightmare');
require('nightmare-upload')(Nightmare);

.upload(selector, files)

Specify the files to add to a selector file input. The files parameter can be a single string (for a single file) or an array of strings (for multiple files).

Important note about setting file upload inputs

This plugin will not work if the Chromium devtools panel is open as Chromium allows only one attachment to the debugger at a time.

Example

var Nightmare = require('nightmare');
require('nightmare-upload')(Nightmare);
var nightmare = Nightmare();
nightmare
 .goto('http://some-url.tld')
 .upload('#some_file_input', '/path/to/my/upload.ext')
 .click('#button_that_submits_form_for_upload')
 ...

References/Credits

Dependencies (1)

Dev Dependencies (10)

Package Sidebar

Install

npm i nightmare-upload

Weekly Downloads

85

Version

0.1.1

License

MIT

Last publish

Collaborators

  • rosshinkley