Fix unknown style (#5810)

* fix unknown style

* missing var

* remove delete because there is already delete site

* fix test
This commit is contained in:
Eugenio Romano
2020-06-24 11:22:09 +01:00
committed by GitHub
parent 9fd10687e4
commit 094f247889
9 changed files with 21 additions and 29 deletions

View File

@@ -635,7 +635,7 @@ export class ViewerPage {
}
async getUnknownFormatMessage(): Promise<string> {
const unknownFormatLabel = this.unknownFormat.element(by.css(`.label`));
const unknownFormatLabel = this.unknownFormat.element(by.css(`.adf-viewer__unknown-label`));
return BrowserActions.getText(unknownFormatLabel);
}
}