mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
[AAE-7154] Automate upload file dialog (#2418)
* [AAE-7154] Automate upload files dialog * [ACA-71546] Fix for sigout * update test * delete comment * fix lint * fix * fix after CR * CR Co-authored-by: Bartosz Sekula <Bartosz.Sekula@hyland.com>
This commit is contained in:
committed by
GitHub
parent
488658802d
commit
22d65f006d
@@ -24,10 +24,11 @@
|
||||
*/
|
||||
|
||||
import { browser, by, ElementFinder } from 'protractor';
|
||||
import { BrowserActions, BrowserVisibility, Logger } from '@alfresco/adf-testing';
|
||||
import { BrowserVisibility, Logger } from '@alfresco/adf-testing';
|
||||
import { APP_ROUTES, USE_HASH_STRATEGY } from './../configs';
|
||||
import { Utils, waitElement, waitForPresence, isPresentAndDisplayed } from '../utilities/utils';
|
||||
import { Header } from '../components';
|
||||
import { UploadFilesDialog } from '../components/dialog/upload-files-dialog';
|
||||
|
||||
export abstract class Page {
|
||||
appRoot = 'app-root';
|
||||
@@ -42,8 +43,7 @@ export abstract class Page {
|
||||
genericErrorIcon = this.byCss('aca-generic-error .mat-icon');
|
||||
genericErrorTitle = this.byCss('.generic-error__title');
|
||||
|
||||
uploadDialog = this.byCss('.adf-upload-dialog');
|
||||
closeUploadButton = this.byCss('.adf-upload-dialog [id="adf-upload-dialog-close"]');
|
||||
uploadFilesDialog = new UploadFilesDialog();
|
||||
|
||||
constructor(public url: string = '') {}
|
||||
|
||||
@@ -62,8 +62,9 @@ export abstract class Page {
|
||||
}
|
||||
|
||||
async signOut(): Promise<void> {
|
||||
await new Header().openMoreMenu();
|
||||
await new Header().menu.clickMenuItem('Sign out');
|
||||
const header = new Header();
|
||||
await header.openMoreMenu();
|
||||
await header.menu.clickMenuItem('Sign out');
|
||||
await BrowserVisibility.waitUntilElementIsPresent(browser.element(by.css('[class*="login-content"] input#username')));
|
||||
}
|
||||
|
||||
@@ -81,16 +82,6 @@ export abstract class Page {
|
||||
}
|
||||
}
|
||||
|
||||
async isUploadDialogOpen(): Promise<boolean> {
|
||||
return isPresentAndDisplayed(this.uploadDialog);
|
||||
}
|
||||
|
||||
async closeUploadDialog(): Promise<void> {
|
||||
if (await this.isUploadDialogOpen()) {
|
||||
await BrowserActions.click(this.closeUploadButton);
|
||||
}
|
||||
}
|
||||
|
||||
async refresh(): Promise<void> {
|
||||
await browser.refresh();
|
||||
await this.waitForApp();
|
||||
|
Reference in New Issue
Block a user