<md-tab *ngFor="let course of profCourses>
<div class="wrapper">
<!--some html-->
</div>
</md-tab>
我想从量角器设置 profCourses 并测试内部 html 的功能。如何从量角器设置这种绑定?
是不是有点像
element.all(by.repeater('let course of profCourses')).then(function (courses) {
courses[0].sendKeys('Course 1');
courses[1].sendKeys('Course 2');
courses[2].sendKeys('Course 3');
});
我收到上面的错误,因为“无法读取未定义的属性‘sendKeys’”
PS:我正在使用 Angular 4.0