gradio/js/app/test/blocks_page_load.spec.ts
Hannah 2592d4e380
Test Blocks.svelte footer copy (#5307)
* test test

* fix test

* tweak

* tweak test name
2023-08-24 12:12:27 +02:00

21 lines
577 B
TypeScript

import { test, expect } from "@gradio/tootils";
test("renders the correct elements", async ({ page }) => {
const textbox = await page.getByLabel("Name");
await textbox.fill("Frank");
await expect(await textbox).toHaveValue("Frank");
await expect(await page.getByLabel("Output")).toHaveValue(
"Welcome! This page has loaded for Frank"
);
});
test("renders the footer text", async ({ page }) => {
const footer = page.locator("footer");
await expect(footer).toBeVisible();
await expect(
footer.getByText("Use via API · Built with Gradio ")
).toBeVisible();
});