[ADF-4831] DocumentList - filetype alternative text is not meaningful (#4998)

* filetype alternative text

* icons text translation key

* icon text accessibility translation

* fix e2e

* add miscellaneous file type
This commit is contained in:
Cilibiu Bogdan
2019-09-05 13:50:28 +03:00
committed by Eugenio Romano
parent ef09b077c4
commit bf6889ee54
3 changed files with 36 additions and 5 deletions

View File

@@ -322,7 +322,7 @@ export class DataTableComponentPage {
}
async checkRowContentIsDisabled(content: string): Promise<void> {
const resultElement = this.rootElement.all(by.css(`div[data-automation-id='${content}'] div.adf-cell-value img[aria-label='disable']`)).first();
const resultElement = this.rootElement.all(by.css(`div[data-automation-id='${content}'] div.adf-cell-value img[aria-label='disabled']`)).first();
await BrowserVisibility.waitUntilElementIsVisible(resultElement);
}