最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Force protractor's onPrepare to wait for async http request - Stack Overflow

programmeradmin0浏览0评论

My protractor conf.js,onPrepare function needs to make a http request that looks like,

onPrepare: function(done) {
    request.get('http://pepper/sysid')
      .end(function(err, resp){
        if(err || !resp.ok){
          log("there is an error " + err.message)
          done()
        }else{
          global.sysid = resp.sysid
          done()
         }
      })

It throws error as,done is not a function

Is there any other way, that i can force the callback inside onPrepare to be invoked before my tests start execution?

My protractor conf.js,onPrepare function needs to make a http request that looks like,

onPrepare: function(done) {
    request.get('http://pepper/sysid')
      .end(function(err, resp){
        if(err || !resp.ok){
          log("there is an error " + err.message)
          done()
        }else{
          global.sysid = resp.sysid
          done()
         }
      })

It throws error as,done is not a function

Is there any other way, that i can force the callback inside onPrepare to be invoked before my tests start execution?

Share Improve this question edited Dec 27, 2015 at 17:01 alecxe 474k127 gold badges1.1k silver badges1.2k bronze badges asked Dec 27, 2015 at 16:49 user2879704user2879704
Add a ment  | 

1 Answer 1

Reset to default 10

onPrepare() can optionally return a promise that protractor would resolve before starting to execute the tests:

onPrepare can optionally return a promise, which Protractor will wait for before continuing execution. This can be used if the preparation involves any asynchronous calls, e.g. interacting with the browser. Otherwise Protractor cannot guarantee order of execution and may start the tests before preparation finishes.

Make a protractor promise and return it from onPrepare():

onPrepare: function() {
    var defer = protractor.promise.defer();

    request.get('http://pepper/sysid').end(function(err, resp) {
        if (err || !resp.ok) {
            log("there is an error " + err.message);
            defer.reject(resp);
        } else {
            global.sysid = resp.sysid;
            defer.fulfill(resp);
        }
    });

    return defer.promise;
},
发布评论

评论列表(0)

  1. 暂无评论