mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
Make aca-playwright-shared buildable and publishable (#4098)
* Make aca-playwright-shared buildable and publishable * Small PR workflow fix
This commit is contained in:
@@ -36,3 +36,4 @@ export * from './upload-dialog.component';
|
||||
export * from './delete-trash-dialog.component';
|
||||
export * from './link-rules.component';
|
||||
export * from './edit-dialog.component';
|
||||
export * from './manage-versions-dialog.component';
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
import { BaseComponent } from '../../base.component';
|
||||
import { Page, expect } from '@playwright/test';
|
||||
import { SearchPage, SearchType } from '@alfresco/playwright-shared';
|
||||
import { SearchPage, SearchType } from '../../../pages';
|
||||
|
||||
type FilterTab = 'Created' | 'Modified';
|
||||
|
||||
|
@@ -22,9 +22,9 @@
|
||||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { SearchPage } from '../../../pages';
|
||||
import { BaseComponent } from '../../base.component';
|
||||
import { Page } from '@playwright/test';
|
||||
import { SearchPage } from '@alfresco/playwright-shared';
|
||||
|
||||
export class SearchFiltersLocation extends BaseComponent {
|
||||
private static rootElement = '.adf-search-filter-menu-card';
|
||||
|
@@ -22,9 +22,9 @@
|
||||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { SearchPage } from '../../../pages';
|
||||
import { BaseComponent } from '../../base.component';
|
||||
import { Page } from '@playwright/test';
|
||||
import { SearchPage } from '@alfresco/playwright-shared';
|
||||
|
||||
export class SearchFiltersProperties extends BaseComponent {
|
||||
private static rootElement = '.adf-search-filter-menu-card';
|
||||
|
@@ -22,7 +22,7 @@
|
||||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { SearchPage } from '@alfresco/playwright-shared';
|
||||
import { SearchPage } from '../../../pages';
|
||||
import { BaseComponent } from '../../base.component';
|
||||
import { Page } from '@playwright/test';
|
||||
|
||||
|
@@ -30,7 +30,6 @@ export class SidenavComponent extends BaseComponent {
|
||||
private static rootElement = 'app-sidenav';
|
||||
|
||||
private personalFiles = this.getChild(`[data-automation-id='app.navbar.personalFiles']`);
|
||||
private fileLibraries = this.getChild(`[data-automation-id='app.navbar.libraries.menu']`);
|
||||
private myLibraries = this.getChild(`[data-automation-id='app.navbar.libraries.files']`);
|
||||
private favoriteLibraries = this.getChild(`[data-automation-id='app.navbar.libraries.favorite']`);
|
||||
private shared = this.getChild(`[data-automation-id='app.navbar.shared']`);
|
||||
|
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
|
||||
import { Page } from '@playwright/test';
|
||||
import { GenericLogger, LoggerLike } from '@alfresco/playwright-shared';
|
||||
import { GenericLogger, LoggerLike } from '../utils';
|
||||
|
||||
export abstract class PlaywrightBase {
|
||||
public page: Page;
|
||||
|
Reference in New Issue
Block a user