Using async / await to resolve protractor promises
Protractor by default uses WebDriver JS control flow to resolve promises and helps in synchronising the execution of scripts in correct order. Minimum requirement to support async / await Nodejs >= 8.0 Jasmine >= 2.7 Need to use async keyword prior to asynchronous functions Need to use await keyword in all user actions, so each…