You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
The documentation example for "by.repeater" show the following html:
<divclass="book-img" ng-repeat-start="book in library"><imgng-src="{{book.imgUrl}}"></img></div><divclass="book-info" ng-repeat-end><h4>{{book.name}}</h4><p>{{book.blurb}}</p></div>
However, it doesn't show how I can get the value for "book.imgUrl".
I've tried:
element.all(by.repeater('book in library').column('imgUrl'));
But I get the error message:
Error: No element found using locator: by.repeater("book in library").column("imgUrl")
Could we have some extra description in the docs on how to check this particular property please?
The documentation example for "by.repeater" show the following html:
However, it doesn't show how I can get the value for "book.imgUrl".
I've tried:
element.all(by.repeater('book in library').column('imgUrl'));
But I get the error message:
Error: No element found using locator: by.repeater("book in library").column("imgUrl")
Could we have some extra description in the docs on how to check this particular property please?