92

I want to test file uploading using an angularjs e2e test. How do you do this in e2e tests? I run my test script through grunt karma.

samjewell
  • 1,068
  • 11
  • 20
Pawan Singh
  • 1,227
  • 2
  • 13
  • 15

10 Answers10

145

This is how I do it:

var path = require('path');

it('should upload a file', function() {
  var fileToUpload = '../some/path/foo.txt',
      absolutePath = path.resolve(__dirname, fileToUpload);

  element(by.css('input[type="file"]')).sendKeys(absolutePath);    
  element(by.id('uploadButton')).click();
});
  1. Use the path module to resolve the full path of the file that you want to upload.
  2. Set the path to the input type="file" element.
  3. Click on the upload button.

This will not work on firefox. Protractor will complain because the element is not visible. To upload in firefox you need to make the input visible. This is what I do:

browser.executeAsyncScript(function(callback) {
  // You can use any other selector
  document.querySelectorAll('#input-file-element')[0]
      .style.display = 'inline';
  callback();
});

// Now you can upload.
$('input[type="file"]').sendKeys(absolutePath);    
$('#uploadButton').click();
Gal Bracha
  • 19,004
  • 11
  • 72
  • 86
Andres D
  • 8,910
  • 2
  • 26
  • 31
  • +1 This is working. Andres, you should ask the OP for feedback since this one might be accepted as the right answer. – coma Oct 03 '14 at 17:17
  • 1
    Worked with Protractor too. – Ilia Barahovsky Oct 07 '14 at 11:27
  • 7
    FWIW, `__dirname` sometimes points to a temporary directory (probably where tests are copied by tests runner). You can use `process.cwd()` instead of `__dirname` if that's the case. – BorisOkunskiy Mar 16 '15 at 14:10
  • This is working for me in chrome, but for other browsers, protractor complains that the element is not visible... any ideas? – Omid Ahourai Oct 02 '15 at 20:54
  • You cannot upload with firefox because the element is not visible. You need to make the element visible to set the path value. See the updated answer. – Andres D Oct 03 '15 at 12:16
  • @AndresD in firefox when i perform this action $('input[type="file"]').sendKeys(absolutePath); it pop-up dialog-box saying "No files to upload". can you please help me on this. – Nick Jan 11 '17 at 19:54
  • @AndresD I try this and I fall into this error: Failed: unknown error: path is not absolute. Of course the path I give is absolute. Reading this https://github.com/angular/protractor/issues/2149 it seems there is issue when host is windows. Any clues for continue ? – jmcollin92 Mar 15 '17 at 07:14
  • this is not working with android hybrid application testing (protractor+appium). my file input selector element(by.css('[id="fileLabtest"]')).sendKeys('/home/myPC/Pictures/fingerpointing.jpg'); – Uttam Panara May 31 '18 at 10:53
16

You can't directly.

For security reason, you can not simulate a user that is choosing a file on the system within a functional testing suite like ngScenario.

With Protractor, since it is based on WebDriver, it should be possible to use this trick

Q: Does WebDriver support file uploads? A: Yes.

You can't interact with the native OS file browser dialog directly, but we do some magic so that if you call WebElement#sendKeys("/path/to/file") on a file upload element, it does the right thing. Make sure you don't WebElement#click() the file upload element, or the browser will probably hang.

This works just fine:

$('input[type="file"]').sendKeys("/file/path")
activedecay
  • 10,129
  • 5
  • 47
  • 71
bdavidxyz
  • 2,492
  • 1
  • 20
  • 40
4

Here is a combo of Andres D and davidb583's advice that would have helped me as I worked through this...

I was trying to get protractor tests executed against the flowjs controls.

    // requires an absolute path
    var fileToUpload = './testPackages/' + packageName + '/' + fileName;
    var absolutePath = path.resolve(__dirname, fileToUpload);

    // Find the file input element
    var fileElem = element(by.css('input[type="file"]'));

    // Need to unhide flowjs's secret file uploader
    browser.executeScript(
      "arguments[0].style.visibility = 'visible'; arguments[0].style.height = '1px'; arguments[0].style.width = '1px'; arguments[0].style.opacity = 1",
      fileElem.getWebElement());

    // Sending the keystrokes will ultimately submit the request.  No need to simulate the click
    fileElem.sendKeys(absolutePath);

    // Not sure how to wait for the upload and response to return first
    // I need this since I have a test that looks at the results after upload
    //  ...  there is probably a better way to do this, but I punted
    browser.sleep(1000);
Doug
  • 642
  • 1
  • 4
  • 14
2
var imagePath = 'http://placehold.it/120x120&text=image1';
element(by.id('fileUpload')).sendKeys(imagePath);

This is working for me.

Thilina Koggalage
  • 1,044
  • 8
  • 16
1

This is what I do to upload file on firefox, this script make the element visible to set the path value:

   browser.executeScript("$('input[type=\"file\"]').parent().css('visibility', 'visible').css('height', 1).css('width', 1).css('overflow', 'visible')");
1

If above solutions don't work, read this

First of all, in order to upload the file there should be an input element that takes the path to the file. Normally, it's immediately next to the 'Upload' button... BUT I've seen this, when the button doesn't have an input around the button which may seem to be confusing. Keep clam, the input has to be on the page! Try look for input element in the DOM, that has something like 'upload', or 'file', just keep in mind it can be anywhere.

When you located it, get it's selector, and type in a path to a file. Remember, it has to be absolute path, that starts from you root directory (/something/like/this for MAC users and C:/some/file in Windows)

await $('input[type="file"]').sendKeys("/file/path")

this may not work, if...

protractor's sendKeys can only type in an input that's visible. Often, the input will be hidden or have 0 pixels size. You can fix that too

let $input = $('input[type="file"]');
await browser.executeScript(
    "arguments[0].style.visibility = 'visible'; arguments[0].style.height = '1px'; arguments[0].style.width = '1px'; arguments[0].style.opacity = 1",
    $input.getWebElement()
);
Sergey Pleshakov
  • 7,964
  • 2
  • 17
  • 40
0

I realized that the file input in the web app I'm testing is only visible in Firefox when it is scrolled into view using JavaScript, so I added scrollIntoView() in Andres D's code to make it work for my app:

  browser.executeAsyncScript(function (callback) {
        document.querySelectorAll('input')[2]
     .style = '';
        document.querySelectorAll('input')[2].scrollIntoView();

        callback();
    });

(I also removed all of the styles for the file input element)

pinkninja
  • 109
  • 1
  • 7
0

// To upload a file from C:\ Directory

{

var path = require('path');
var dirname = 'C:/';
var fileToUpload = '../filename.txt';
var absolutePath = path.resolve('C:\filename.txt');
var fileElem = ptor.element.all(protractor.By.css('input[type="file"]'));

fileElem.sendKeys(absolutePath);
cb();

};

randomguy
  • 357
  • 2
  • 9
0

If you want to select a file without opening the popup below is the answer :

var path = require('path'); 
var remote = require('../../node_modules/selenium-webdriver/remote'); 
browser.setFileDetector(new remote.FileDetector()); 
var fileToUpload = './resume.docx';
var absolutePath = path.resolve(process.cwd() + fileToUpload); 
element(by.css('input[type="file"]')).sendKeys(absolutePath);
-3

the current documented solutions would work only if users are loading jQuery. i all different situations users will get an error such:Failed: $ is not defined

i would suggest to document a solution using native angularjs code.

e.g. i would suggest instead of suggesting:

    $('input[type="file"]') .....

to suggest:

    angular.element(document.querySelector('input[type="file"]')) .....

the latter is more standard, atop of angular and more important not require jquery