Files
nocodb/tests/playwright/pages/Dashboard/ProjectView/index.ts
2025-08-16 10:02:14 +00:00

89 lines
2.9 KiB
TypeScript

import { expect, Locator } from '@playwright/test';
import { DashboardPage } from '..';
import BasePage from '../../Base';
import { DataSourcePage } from './DataSourcePage';
import { TablesViewPage } from './TablesViewPage';
import { AccessSettingsPage } from './AccessSettingsPage';
import { BaseSettingsPage } from './Settings';
export class ProjectViewPage extends BasePage {
readonly dashboard: DashboardPage;
// sub components
readonly dataSources: DataSourcePage;
readonly tables: TablesViewPage;
readonly accessSettings: AccessSettingsPage;
readonly settings: BaseSettingsPage;
// assets
readonly sidebar_overview_btn: Locator;
readonly tab_overview: Locator;
readonly tab_dataSources: Locator;
readonly tab_accessSettings: Locator;
readonly btn_addNewTable: Locator;
readonly btn_importData: Locator;
readonly btn_addNewDataSource: Locator;
readonly btn_share: Locator;
constructor(dashboard: DashboardPage) {
super(dashboard.rootPage);
this.dashboard = dashboard;
this.tables = new TablesViewPage(this);
this.dataSources = new DataSourcePage(this);
this.accessSettings = new AccessSettingsPage(this);
this.settings = new BaseSettingsPage(this);
this.sidebar_overview_btn = this.dashboard.leftSidebar
.get()
.locator('[data-testid="nc-sidebar-base-overview-btn"]');
this.tab_overview = this.get().locator('[data-testid="proj-view-tab__overview"]');
this.tab_dataSources = this.get().locator('[data-testid="proj-view-tab__data-sources"]');
this.tab_accessSettings = this.get().locator('[data-testid="proj-view-tab__access-settings"]');
this.btn_addNewTable = this.get().locator('[data-testid="proj-view-btn__add-new-table"]');
this.btn_importData = this.get().locator('[data-testid="proj-view-btn__import-data"]');
this.btn_addNewDataSource = this.get().locator('.nc-btn-new-datasource');
this.btn_share = this.get().locator('[data-testid="share-base-button"]');
}
get() {
return this.dashboard.get().locator('.nc-base-view-tab');
}
async openOverview() {
await this.dashboard.leftSidebar.verifyBaseListOpen(false);
if (await this.get().isVisible()) return;
await this.sidebar_overview_btn.click();
await this.get().waitFor({ state: 'visible' });
}
async verifyAccess(role: string) {
await this.openOverview();
await this.get().waitFor({ state: 'visible' });
// provide time for tabs to appear
await this.rootPage.waitForTimeout(1000);
if (role.toLowerCase() === 'creator' || role.toLowerCase() === 'owner') {
expect(await this.tab_overview.isVisible()).toBeTruthy();
await this.tab_accessSettings.waitFor({ state: 'visible' });
expect(await this.tab_dataSources.isVisible()).toBeTruthy();
} else {
expect(await this.tab_overview.isVisible()).toBeFalsy();
expect(await this.tab_dataSources.isVisible()).toBeFalsy();
}
await this.tables.verifyAccess(role);
}
}