Spaces:
Running
Running
import { expect, test } from "@playwright/test"; | |
import * as dotenv from "dotenv"; | |
import path from "path"; | |
test.skip( | |
"should like and add components and flows", | |
{ tag: ["@release"] }, | |
async ({ page }) => { | |
test.skip( | |
!process?.env?.STORE_API_KEY, | |
"STORE_API_KEY required to run this test", | |
); | |
if (!process.env.CI) { | |
dotenv.config({ path: path.resolve(__dirname, "../../.env") }); | |
} | |
await page.goto("/"); | |
await page.waitForTimeout(1000); | |
let modalCount = 0; | |
try { | |
const modalTitleElement = await page?.getByTestId("modal-title"); | |
if (modalTitleElement) { | |
modalCount = await modalTitleElement.count(); | |
} | |
} catch (error) { | |
modalCount = 0; | |
} | |
while (modalCount === 0) { | |
await page.getByText("New Flow", { exact: true }).click(); | |
await page.waitForTimeout(5000); | |
modalCount = await page.getByTestId("modal-title")?.count(); | |
} | |
await page.getByText("Close", { exact: true }).click(); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("button-store").click(); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("api-key-button-store").click(); | |
await page | |
.getByPlaceholder("Insert your API Key") | |
.fill(process.env.STORE_API_KEY ?? ""); | |
await page.getByTestId("api-key-save-button-store").click(); | |
await page.waitForTimeout(1000); | |
await page.getByText("Success! Your API Key has been saved.").isVisible(); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("button-store").click(); | |
await page.waitForSelector('[data-testid="likes-Website Content QA"]', { | |
timeout: 100000, | |
}); | |
await page.getByTestId("likes-Website Content QA").isVisible(); | |
await page.waitForTimeout(1000); | |
const likedValue = await page | |
.getByTestId("likes-Website Content QA") | |
.innerText(); | |
await page.getByTestId("like-Website Content QA").click(); | |
await page.waitForSelector('[data-testid="likes-Website Content QA"]', { | |
timeout: 100000, | |
}); | |
await page.waitForTimeout(1000); | |
const likedValueAfter = await page | |
.getByTestId("likes-Website Content QA") | |
.innerText(); | |
if (Number(likedValue) === Number(likedValueAfter)) { | |
expect(false).toBe(true); | |
} | |
await page.waitForSelector('[data-testid="downloads-Website Content QA"]', { | |
timeout: 100000, | |
}); | |
const downloadValue = await page | |
.getByTestId("downloads-Website Content QA") | |
.innerText(); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("install-Website Content QA").click(); | |
await page.waitForTimeout(1000); | |
await page.getByText("Flow Installed Successfully").isVisible(); | |
await page.waitForTimeout(1000); | |
const downloadValueAfter = await page | |
.getByTestId("downloads-Website Content QA") | |
.innerText(); | |
if (Number(downloadValue) === Number(downloadValueAfter)) { | |
expect(false).toBe(true); | |
} | |
await page.getByTestId("install-Basic RAG").click(); | |
await page.waitForTimeout(1000); | |
await page.getByText("Component Installed Successfully").isVisible(); | |
await page.waitForSelector('[data-testid="icon-ChevronLeft"]', { | |
timeout: 100000, | |
}); | |
await page.getByTestId("icon-ChevronLeft").first().click(); | |
await page.waitForSelector("text=Website Content QA", { timeout: 30000 }); | |
await page.getByText("Website Content QA").first().isVisible(); | |
await page.getByText("Components").first().click(); | |
await page.waitForTimeout(1000); | |
await page.waitForSelector("text=Basic RAG", { timeout: 30000 }); | |
await page.getByText("Basic RAG").first().isVisible(); | |
}, | |
); | |
test.skip( | |
"should find a searched Component on Store", | |
{ tag: ["@release"] }, | |
async ({ page }) => { | |
test.skip( | |
!process?.env?.STORE_API_KEY, | |
"STORE_API_KEY required to run this test", | |
); | |
if (!process.env.CI) { | |
dotenv.config({ path: path.resolve(__dirname, "../../.env") }); | |
} | |
await page.goto("/"); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("button-store").click(); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("api-key-button-store").click(); | |
await page | |
.getByPlaceholder("Insert your API Key") | |
.fill(process.env.STORE_API_KEY ?? ""); | |
await page.getByTestId("api-key-save-button-store").click(); | |
await page.waitForTimeout(1000); | |
await page.getByText("Success! Your API Key has been saved.").isVisible(); | |
await page.waitForTimeout(1000); | |
await page.getByTestId("button-store").click(); | |
await page.waitForSelector('[data-testid="search-store-input"]', { | |
timeout: 100000, | |
}); | |
await page.getByTestId("search-store-input").fill("File Loader"); | |
await page.getByTestId("search-store-button").click(); | |
await page.getByText("File Loader").isVisible(); | |
await page.getByTestId("search-store-input").fill("Basic RAG"); | |
await page.getByTestId("search-store-button").click(); | |
await page.getByText("Basic RAG").isVisible(); | |
await page.getByTestId("search-store-input").fill("YouTube QA"); | |
await page.getByTestId("search-store-button").click(); | |
await page.getByText("YouTube QA").isVisible(); | |
}, | |
); | |