[AAE-11437] Remove snackbar duplications (#8003)

* [AAE-11437] Remove snackbar duplications

* trigger travis

* extend timeout
This commit is contained in:
Rafal Szmit
2022-11-24 10:28:45 +01:00
committed by GitHub
parent 792906087c
commit 7667c98196
5 changed files with 35 additions and 40 deletions

View File

@@ -46,18 +46,6 @@ export class NotificationDemoPage {
return BrowserActions.getText(this.notificationConfig);
}
async isNotificationSnackBarDisplayed(): Promise<boolean> {
return this.snackbarPage.isNotificationSnackBarDisplayed();
}
async getSnackBarMessage(): Promise<string> {
return this.snackbarPage.getSnackBarMessage();
}
async waitForSnackBarToClose(): Promise<void> {
await this.snackbarPage.waitForSnackBarToClose(15000);
}
async enterMessageField(text: string): Promise<void> {
await BrowserActions.clearSendKeys(this.messageField, text);
}