mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-08-07 17:48:27 +00:00
[ACS-5328] initial-create-folder-test (#3243)
* [ACS-5328] initial-create-folder-test
* ACS-5328-adding-more-tests-to-create-folder
* try to increase e2e instances
* try to make protractor vars global
* removing playwright if statement
* Revert "removing playwright if statement"
This reverts commit 651070040b
.
* delete unused file playwright old
* remove browser run
---------
Co-authored-by: Denys Vuika <denys.vuika@gmail.com>
Co-authored-by: akash.rathod@hyland.com <akash.rathod@hyland.com>
This commit is contained in:
@@ -26,10 +26,11 @@ import { Page } from '@playwright/test';
|
||||
import { BaseComponent } from '../base.component';
|
||||
|
||||
export class SnackBarComponent extends BaseComponent {
|
||||
private static rootElement = 'simple-snack-bar';
|
||||
private static rootElement = 'adf-snackbar-content';
|
||||
|
||||
public message = this.getChild(' > span');
|
||||
public getByMessageLocator = (message: string) => this.getChild('span', { hasText: message });
|
||||
public message = this.getChild(' [data-automation-id=\'adf-snackbar-message-content\']').first();
|
||||
public getByMessageLocator = (message: string) => this.getChild(`[data-automation-id='adf-snackbar-message-content']`,
|
||||
{ hasText: message }).first();
|
||||
|
||||
constructor(page: Page, rootElement = SnackBarComponent.rootElement) {
|
||||
super(page, rootElement);
|
||||
|
Reference in New Issue
Block a user