[ADF-4298] Improve Info drawer e2e tests (#4532)

* [ADF-4298] Improve Info drawer e2e tests

* [ADF-4298] Add new tab with single icon and update e2e tests
This commit is contained in:
davidcanonieto
2019-04-02 12:00:27 +01:00
committed by Eugenio Romano
parent 2b4d748a66
commit b60e9a7c6e
5 changed files with 69 additions and 27 deletions

View File

@@ -250,11 +250,21 @@
<p class="toggle">
<mat-slide-toggle
id="adf-show-tab-with-icon"
id="adf-tab-with-icon"
[color]="'primary'"
(change)="toggleShowInfoDrawerTabIcon()"
[checked]="showInfoDrawerTabWithIcon">
Show info drawer tab con
(change)="toggleShowTabWithIcon()"
[checked]="showTabWithIcon">
Show tab with icon
</mat-slide-toggle>
</p>
<p class="toggle">
<mat-slide-toggle
id="adf-icon-and-label-tab"
[color]="'primary'"
(change)="toggleShowTabWithIconAndLabel()"
[checked]="showTabWithIconAndLabel">
Show tab with icon and label
</mat-slide-toggle>
</p>
@@ -272,13 +282,19 @@
</adf-info-drawer-tab>
<adf-info-drawer-tab
*ngIf="showInfoDrawerTabWithIcon"
[label]="'Settings'"
[icon]="'comment'"
<adf-info-drawer-tab
*ngIf="showTabWithIcon"
[label]=""
[icon]="'face'"
data-automation-id="adf-settings-tab">
</adf-info-drawer-tab>
<adf-info-drawer-tab
*ngIf="showTabWithIconAndLabel"
[label]="'Comments'"
[icon]="'comment'"
data-automation-id="adf-settings-tab">
</adf-info-drawer-tab>
</adf-info-drawer>
</ng-template>