I'm new to Angular and Protractor.
I'm using protractor to test Angular pages. I'm trying to test log-in procedure.
part of the html is:
< li data-ng-show="isLoggedIn()" >
I want to make sure that the credentials are correct by calling the 'isLoggedIn()' function. the 'isLoggedIn()' function is in a controller named 'navControl'.
can I do it? How? are there other suggestions to test log-in?