mirror of https://github.com/nocodb/nocodb
Raju Udava
2 years ago
committed by
Muhammed Mustafa
2 changed files with 60 additions and 6 deletions
@ -0,0 +1,57 @@ |
|||||||
|
import { test } from "@playwright/test"; |
||||||
|
import { DashboardPage } from "../pages/Dashboard"; |
||||||
|
import setup from "../setup"; |
||||||
|
|
||||||
|
test.describe("Super user", () => { |
||||||
|
let dashboard: DashboardPage; |
||||||
|
let context: any; |
||||||
|
|
||||||
|
test.beforeEach(async ({ page }) => { |
||||||
|
context = await setup({ page }); |
||||||
|
dashboard = new DashboardPage(page, context.project); |
||||||
|
}); |
||||||
|
|
||||||
|
test("AppStore access", async () => { |
||||||
|
await dashboard.closeTab({ title: "Team & Auth" }); |
||||||
|
|
||||||
|
await dashboard.rootPage.goto("/#/apps"); |
||||||
|
await dashboard.rootPage.waitForLoadState("load"); |
||||||
|
const appPage = await dashboard.rootPage; |
||||||
|
|
||||||
|
// Access slack card
|
||||||
|
const card = await appPage.locator(".nc-app-store-card-Slack"); |
||||||
|
await card.click(); |
||||||
|
await card.locator(".nc-app-store-card-install").click(); |
||||||
|
|
||||||
|
// Configure slack
|
||||||
|
let slackModal = await appPage.locator(".nc-modal-plugin-install"); |
||||||
|
await slackModal |
||||||
|
.locator('[placeholder="Channel Name"]') |
||||||
|
.fill("Test Channel"); |
||||||
|
await slackModal |
||||||
|
.locator('[placeholder="Webhook URL"]') |
||||||
|
.fill("http://test.com"); |
||||||
|
await slackModal.locator('button:has-text("Save")').click(); |
||||||
|
await dashboard.toastWait({ message: "Successfully installed" }); |
||||||
|
|
||||||
|
// Modify configuration
|
||||||
|
await card.click(); |
||||||
|
await card.locator(".nc-app-store-card-edit").click(); |
||||||
|
slackModal = await appPage.locator(".nc-modal-plugin-install"); |
||||||
|
await slackModal |
||||||
|
.locator('[placeholder="Channel Name"]') |
||||||
|
.fill("Test Channel 2"); |
||||||
|
await slackModal |
||||||
|
.locator('[placeholder="Webhook URL"]') |
||||||
|
.fill("http://test2.com"); |
||||||
|
await slackModal.locator('button:has-text("Save")').click(); |
||||||
|
await dashboard.toastWait({ message: "Successfully installed" }); |
||||||
|
|
||||||
|
// Uninstall
|
||||||
|
await card.click(); |
||||||
|
await card.locator(".nc-app-store-card-reset").click(); |
||||||
|
slackModal = await appPage.locator(".nc-modal-plugin-uninstall"); |
||||||
|
await slackModal.locator('button:has-text("Confirm")').click(); |
||||||
|
await dashboard.toastWait({ message: "Plugin uninstalled successfully" }); |
||||||
|
}); |
||||||
|
}); |
Loading…
Reference in new issue