Force Protractor's Onprepare To Wait For Async Http Request
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, r
Solution 1:
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() {
vardefer = 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);
}
});
returndefer.promise;
},
Post a Comment for "Force Protractor's Onprepare To Wait For Async Http Request"