I have been looking for a specific element to test:
<div class="alert alert-danger" role="alert" ng-show="notValid">Zugangsdaten eingeben</div>
How do I locate this element to verify its visibility based on the ng-show attribute?
The ng-show attribute and value are the only identifiers for this element. The class is used in multiple other elements...
I am hoping to find something like this:
var notValid = element(by.Attribute('ng-show', 'notValid');