* fix e2e test [C260140] Copy - No permission folder

* Fix e2e test [C299158] Login component - SSO Grant type password (implicit flow false)
This commit is contained in:
Suzana Dirla 2019-10-06 20:05:52 +03:00 committed by Eugenio Romano
parent 4a531dafcd
commit 9dd78b10f9
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
.adf-host-settings { .adf-host-settings {
display: flex; display: flex;
height: 100%; min-height: 100%;
align-items: center; align-items: center;
.adf-authentication-type { .adf-authentication-type {

View File

@ -322,7 +322,7 @@ export class DataTableComponentPage {
} }
async checkRowContentIsDisabled(content: string): Promise<void> { 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='disabled']`)).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); await BrowserVisibility.waitUntilElementIsVisible(resultElement);
} }