app.component.html
<div class="student-list" *ngFor="let student of students">
<p>{{student.name}}</p>
</div>
すべての生徒に名前があるかどうかをテストしたい。しかしstudents
、app.component.ts で設定されているリストです。
students
では、分度器からどのように設定すればよいですか?
私は次のことをしました
element(by.binding('students')).sendKeys(['abc', 'xyz']);
しかし、これは機能していませんFailed: unknown error: angular is not defined
。正しい方法は何ですか?