mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-06 00:26:42 +00:00
* fix(nc-gui); update toolbar menu text grom GroupBy to Group * fix(nc-gui): move sidebar base, table expand icon to the right side * fix(nc-gui): sidebar base, table, view menu options padding issue * fix(nc-gui): add background color for row on hover in grid view * fix(nc-gui): reduce width of index column * fix(nc-gui): on hover grid row bg opacity issue * fix(nc-gui): reduce font size and grid cell height * fix(nc-gui): sidebar view menu alignment issue on mobile screen * fix(nc-gui): reduce font size * fix(nc-gui): set column default width to 180px * fix(nc-gui): keep only sidebar changes & revert all other changes * fix(nc-gui): change table icon * fix(nc-gui): trim base, table, view title while saving it * fix(nc-gui): increate left sidebar max width * fix(nc-gui): show truncated base/table/view name until standard end * fix(nc-gui): oss sidebar base menu options alignment issue * fix(nc-gui): use valid classname * fix(nc-gui): sidebar external db source menu ui fixes * fix(nc-gui): small changes * chore(nc-gui): lint * fix(nc-gui): pw test fail issue * fix(nc-gui): trim title while creating base, table, view * fix(nc-gui): some of the sidebar pw test fail issues * fix(test): sidebar test fail issue * fix(test): projectCollaboration test fail issue * fix(nc-gui): change font size of view menu option view mode chip text * fix(nc-gui): grayed out create view dropdown plus icon color * fix(nc-gui): grayed out table icon and reduce width of default view context menu * fix(nc-gui): remove copyright text from user menu * fix(nc-gui): chevron icon and show/hide sidebar icon should be gray in color
153 lines
4.5 KiB
TypeScript
153 lines
4.5 KiB
TypeScript
import BasePage from '../../../Base';
|
|
import { SidebarPage } from '..';
|
|
import { expect } from '@playwright/test';
|
|
|
|
export class SidebarProjectNodeObject extends BasePage {
|
|
readonly sidebar: SidebarPage;
|
|
|
|
constructor(parent: SidebarPage) {
|
|
super(parent.rootPage);
|
|
|
|
this.sidebar = parent;
|
|
}
|
|
|
|
get({ baseTitle }: { baseTitle: string }) {
|
|
return this.sidebar.get().getByTestId(`nc-sidebar-base-title-${baseTitle}`);
|
|
}
|
|
|
|
async click({ baseTitle }: { baseTitle: string }) {
|
|
await this.get({
|
|
baseTitle,
|
|
}).click();
|
|
}
|
|
|
|
async clickOptions({ baseTitle }: { baseTitle: string }) {
|
|
await this.get({
|
|
baseTitle,
|
|
}).hover();
|
|
|
|
await this.get({
|
|
baseTitle,
|
|
})
|
|
.getByTestId(`nc-sidebar-context-menu`)
|
|
.click();
|
|
}
|
|
|
|
async verifyTableAddBtn({ baseTitle, visible }: { baseTitle: string; visible: boolean }) {
|
|
await this.get({
|
|
baseTitle,
|
|
}).waitFor({ state: 'visible' });
|
|
await this.get({
|
|
baseTitle,
|
|
}).scrollIntoViewIfNeeded();
|
|
await this.get({
|
|
baseTitle,
|
|
}).hover();
|
|
|
|
const addBtn = this.get({
|
|
baseTitle,
|
|
}).getByTestId('nc-sidebar-add-base-entity');
|
|
|
|
if (visible) {
|
|
await expect(addBtn).toBeVisible();
|
|
} else await expect(addBtn).toHaveCount(0);
|
|
}
|
|
|
|
async verifyProjectOptions({
|
|
baseTitle,
|
|
renameVisible,
|
|
starredVisible,
|
|
duplicateVisible,
|
|
relationsVisible,
|
|
restApisVisible,
|
|
importVisible,
|
|
settingsVisible,
|
|
deleteVisible,
|
|
copyProjectInfoVisible,
|
|
}: {
|
|
baseTitle: string;
|
|
renameVisible?: boolean;
|
|
starredVisible?: boolean;
|
|
duplicateVisible?: boolean;
|
|
relationsVisible?: boolean;
|
|
restApisVisible?: boolean;
|
|
importVisible?: boolean;
|
|
settingsVisible?: boolean;
|
|
deleteVisible?: boolean;
|
|
copyProjectInfoVisible?: boolean;
|
|
}) {
|
|
await this.get({
|
|
baseTitle,
|
|
}).waitFor({ state: 'visible' });
|
|
await this.get({
|
|
baseTitle,
|
|
}).scrollIntoViewIfNeeded();
|
|
await this.get({
|
|
baseTitle,
|
|
}).hover();
|
|
|
|
const renameLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-rename');
|
|
|
|
if (renameVisible) await renameLocator.isVisible();
|
|
else await expect(renameLocator).toHaveCount(0);
|
|
|
|
const starredLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-starred');
|
|
|
|
if (starredVisible) await expect(starredLocator).toBeVisible();
|
|
else await expect(starredLocator).toHaveCount(0);
|
|
|
|
const duplicateLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-duplicate');
|
|
|
|
if (duplicateVisible) await expect(duplicateLocator).toBeVisible();
|
|
else await expect(duplicateLocator).toHaveCount(0);
|
|
|
|
const relationsLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-relations');
|
|
|
|
if (relationsVisible) await expect(relationsLocator).toBeVisible();
|
|
else await expect(relationsLocator).toHaveCount(0);
|
|
|
|
const restApisLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-rest-apis');
|
|
|
|
if (restApisVisible) await expect(restApisLocator).toBeVisible();
|
|
else await expect(restApisLocator).toHaveCount(0);
|
|
|
|
const importLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-import');
|
|
|
|
if (importVisible) await expect(importLocator).toBeVisible();
|
|
else await expect(importLocator).toHaveCount(0);
|
|
|
|
const settingsLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-settings');
|
|
|
|
if (settingsVisible) await expect(settingsLocator).toBeVisible();
|
|
else await expect(settingsLocator).toHaveCount(0);
|
|
|
|
const deleteLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-delete');
|
|
|
|
if (deleteVisible) await expect(deleteLocator).toBeVisible();
|
|
else await expect(deleteLocator).toHaveCount(0);
|
|
|
|
const copyProjectInfoLocator = await this.rootPage
|
|
.getByTestId(`nc-sidebar-base-${baseTitle}-options`)
|
|
.getByTestId('nc-sidebar-base-copy-base-info');
|
|
|
|
if (copyProjectInfoVisible) await expect(copyProjectInfoLocator).toBeVisible();
|
|
else await expect(copyProjectInfoLocator).toHaveCount(0);
|
|
}
|
|
}
|