enforce types for forms cloud (#5371)

* enforce right type form cloud

* remove missing import

* fix selector
This commit is contained in:
Eugenio Romano
2020-03-20 21:33:43 +00:00
committed by GitHub
parent 78c3db5db7
commit 94f4b69b76
8 changed files with 261 additions and 37 deletions

View File

@@ -36,7 +36,7 @@ export class PeopleGroupCloudComponentPage {
peopleCloudComponentTitle: ElementFinder = element(by.cssContainingText('mat-card-title', 'People Cloud Component'));
groupCloudComponentTitle: ElementFinder = element(by.cssContainingText('mat-card-title', 'Groups Cloud Component'));
preselectValidation: ElementFinder = element.all(by.css('mat-checkbox.app-preselect-value')).first();
preselectValidationStatus: ElementFinder = element(by.css('mat-checkbox.app-preselect-value label input'));
preselectValidationStatus: ElementFinder = element.all(by.css('mat-checkbox.app-preselect-value label input')).first();
peopleFilterByAppName: ElementFinder = element(by.css('.app-people-control-options mat-radio-button[value="appName"]'));
groupFilterByAppName: ElementFinder = element(by.css('.app-groups-control-options mat-radio-button[value="appName"]'));