File size: 577 Bytes
a03b3ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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();
});
|