Grants the ability to add files to file inputs for Nightmare 2.x, just like the good ol' days of Nightmare 1.x.
Require the library, passing Nightmare as a reference to add the plugin actions:
var Nightmare = require('nightmare');
require('nightmare-upload')(Nightmare);
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).
This plugin will not work if the Chromium devtools panel is open as Chromium allows only one attachment to the debugger at a time.
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')
...