You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
Currently the configuration needs to be specified as an object in module.exports. This means that everything, include the browser capabilities need to be synchronous.
However, packages like firefox-profile are easier to use with their async API. Generating the zip and crx file for chrome extensions also work well with an async API.
What would be the best way to use the config where the capabilities object is generated asynchronously? Is this the best way of using protractor?
P.S: I am working on browser-perf and am looking at reusing protractor tests to test performance of Angular web apps. I am also generating the browser capabilities object asynchronously, hence this question.