protractor: test download file without knowing filename

微笑、不失礼 提交于 2019-12-05 21:39:48

问题


I followed this answer and it looks almost the thing I need.

The problem there is that he already knows the filename and I am doing e2e test for downloading a file, but the filename depends on the current time (even with milliseconds) so I don't really know the name (or it would be very difficult to get it).

I think I am missing something very simple here, but I was thinking of two ways:

  1. Recreate filenames (with the same function that returns the name of this file) and start checking for existance of a file with that name, if it doesn't exist, then move to the next millisecond until I hit the right name.
  2. Check the download folder for existance of "any" file, if I find one there then it should be the file I am downloading (for this case I don't know how to check an entire folder in protractor).

Hope you guys could help with these alternatives (I would like some help with point 2) or maybe give me a better one. Thanks


回答1:


I ended up following @alecxe's suggestion and here is my answer:

var glob = require("glob");

browser.driver.wait(function () {
    var filesArray = glob.sync(filePattern);
    if (typeof filesArray !== 'undefined' && filesArray.length > 0) {
        // this check is necessary because `glob.sync` can return
        // an empty list, which will be considered as a valid output
        // making the wait to end.
        return filesArray;
    }
}, timeout).then(function (filesArray) {
    var filename = filesArray[0];
    // now we have the filename and can do whatever we want
});



回答2:


Just to add a little bit more background information to the @elRuLL's answer.

The main idea is based on 2 things:

  • browser.wait() fits the problem perfectly - it would execute a function continuously until it evaluates to true or a timeout is reached. And, the timeout mechanism is already built-in.
  • glob module provides a way to look for filenames matching a certain pattern (in the worst case, you can wait for the *.* - basically, any file to appear)


来源:https://stackoverflow.com/questions/41082777/protractor-test-download-file-without-knowing-filename

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!