Property Page Panel:
this.IncList = element.all(by.repeater('list in $ctrl.all track by list.guid'));
Code snippet for waiting for List to appear:
exports.WaitUntilListDisplayed = function(){
browser.wait(function(){
Panel.IncList.isDisplayed();
},10000);
};
When attempting to use the above function in my test to wait for all items in the list to be displayed, it consistently times out. Is there a better way to wait until all elements within ng-repeat are visible?