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
framework: 'jasmine2' in caps to framework: 'jasmine'
transform by.repeater like this;
- var row = element.all(by.repeater('dataRow in displayedCollection')).get(1);
- var cells = row.all(by.tagName('td'));
+ var row = await $$('[ng-repeat="dataRow in displayedCollection"]')[0]
+ var cells = row.$$('td');
The text was updated successfully, but these errors were encountered:
framework: 'jasmine2'
in caps toframework: 'jasmine'
by.repeater
like this;The text was updated successfully, but these errors were encountered: