Improve css prebuilt creation and minimize (#5553)

* improve CSS creation strategy and minimize

* remove multiple select slow down test
This commit is contained in:
Eugenio Romano
2020-03-17 18:59:52 +00:00
committed by GitHub
parent ec689cad3f
commit 7c90c9b372
9 changed files with 1262 additions and 138 deletions

View File

@@ -35,7 +35,7 @@ export class PeopleGroupCloudComponentPage {
groupAppInput: ElementFinder = element(by.css('input[data-automation-id="app-group-app-input"]'));
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(by.css('mat-checkbox.app-preselect-value'));
preselectValidation: ElementFinder = element.all(by.css('mat-checkbox.app-preselect-value')).first();
preselectValidationStatus: ElementFinder = element(by.css('mat-checkbox.app-preselect-value label input'));
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"]'));