Skip to content

Instantly share code, notes, and snippets.

@thekarel
Created February 23, 2014 10:20
Show Gist options
  • Save thekarel/9169612 to your computer and use it in GitHub Desktop.
Save thekarel/9169612 to your computer and use it in GitHub Desktop.
var util = require('util');
it('should upload file', function() {
var fileToUpload = '../some/path/foo.txt';
var absolutePath = path.resolve(__dirname, fileToUpload);
$('input[type="file"]').sendKeys(absolutePath);
$('#uploadButton').click();
});
@SwetaGabani
Copy link

what is __dirname ???

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment