test: project operations

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
Raju Udava
2022-10-22 21:05:49 +05:30
committed by Muhammed Mustafa
parent 137b721e71
commit 19ec22f10e
2 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import { test } from "@playwright/test";
import { DashboardPage } from "../pages/Dashboard";
import setup from "../setup";
import { ToolbarPage } from "../pages/Dashboard/common/Toolbar";
test.describe("Project operations", () => {
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("rename, delete", async () => {
await dashboard.clickHome();
await dashboard.renameProject({
title: "externalREST0",
newTitle: "externalREST0x",
});
await dashboard.clickHome();
await dashboard.openProject({ title: "externalREST0x" });
await dashboard.clickHome();
await dashboard.deleteProject({ title: "externalREST0x" });
});
});