mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 20:16:45 +00:00
23 lines
694 B
TypeScript
23 lines
694 B
TypeScript
import { test } from "@playwright/test";
|
|
import { DashboardPage } from "../pages/Dashboard";
|
|
import setup from "../setup";
|
|
import { ToolbarPage } from "../pages/Dashboard/common/Toolbar";
|
|
|
|
test.describe.only("Test block name", () => {
|
|
let dashboard: DashboardPage;
|
|
let toolbar: ToolbarPage;
|
|
let context: any;
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
context = await setup({ page });
|
|
dashboard = new DashboardPage(page, context.project);
|
|
toolbar = dashboard.grid.toolbar;
|
|
});
|
|
|
|
test("Test case name", async () => {
|
|
// close 'Team & Auth' tab
|
|
await dashboard.closeTab({ title: "Team & Auth" });
|
|
await dashboard.treeView.openTable({ title: "Country" });
|
|
});
|
|
});
|