[ACA-4262] fix selector for content-node-selector-dialog (#1951)

* override generic dialog content selector

* un-exclude tests

* lint
This commit is contained in:
Adina Parpalita
2021-01-27 16:31:21 +02:00
committed by GitHub
parent 4033967b07
commit 21989ec1ab
2 changed files with 5 additions and 62 deletions

View File

@@ -49,6 +49,10 @@ export class ContentNodeSelectorDialog extends GenericDialog {
super('.adf-content-node-selector-dialog');
}
get content() {
return this.rootElem.element(by.css('.adf-content-node-selector-content'));
}
async waitForDropDownToClose(): Promise<void> {
await waitForStaleness(browser.$('.mat-option .mat-option-text'));
}