Reputation: 1214
My angular application has the data list view which has been developed by the Angular material data table as below.
<mat-table class="lessons-table mat-elevation-z8" [dataSource]="dataSource">
<ng-container matColumnDef="role">
<mat-header-cell *matHeaderCellDef mat-sort-header>Role</mat-header-cell>
<mat-cell class="description-cell"
*matCellDef="let user">{{user.role}}</mat-cell>
</ng-container>
<ng-container matColumnDef="email">
<mat-header-cell *matHeaderCellDef mat-sort-header>Email</mat-header-cell>
<mat-cell class="description-cell fontSize10px"
*matCellDef="let user" matTooltip="{{user.email}}">
{{showEmail(user.email)}}</mat-cell>
</ng-container>
</mat-table>
Here, How do I check in this page using Protractor? Anyone help me this?
Upvotes: 0
Views: 395