I'm having timing issues when writing a selenium test for an angular app. There are pending $http
requests that need finished before the next step gets executed.
If I would use jQuery, I could do the following to check if there are any pending requests:
jQuery.active
Does something similar exist for AngularJS?