q library has this neat feature to resolve and spread multiple promises into separate arguments:
If you have a promise for an array, you can use sprea
It may come a bit ugly to use, but you can define an independent helper function, which can be passed to then()
as a parameter and have a callback, which is usually passed to then()
to be passed to it. This function will then convert array value to function arguments:
protractor.promise.all([
elm.getId(),
browser.driver.switchTo().activeElement().getId()
]).then(spread(function (currentElementID, activeElementID) {
// ---^^^----- use helper function to spread args
jasmine.matchersUtil.equals(currentElementID, activeElementID);
}));
// helper function gets a callback
function spread(callback) {
// and returns a new function which will be used by `then()`
return function (array) {
// with a result of calling callback via apply to spread array values
return callback.apply(null, array);
};
}
You can still chain it with another then()
and provide rejection callbacks; it keeps all the behavior of Protractor promises the same, but just converts array of values to arguments.
Drawbacks are that it is does not have a perfect look like in your example (not .all().spread()
but .all().then(spread())
) and you'll probably have to create a module for this helper or define it globally to be able to use it easily in multiple test files.
Update:
With ES2015 it is possible to use destructuring assignment along with then()
:
protractor.promise.all([
elm.getId(),
browser.driver.switchTo().activeElement().getId()
]).then(function (values) {
// Destructure values to separate variables
const [currentElementID, activeElementID] = values;
jasmine.matchersUtil.equals(currentElementID, activeElementID);
}));