mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-01 11:45:36 +08:00
10 lines
326 B
TypeScript
10 lines
326 B
TypeScript
|
import { test, expect } from "@self/tootils";
|
||
|
|
||
|
test("1000 total textboxes render", async ({ page }) => {
|
||
|
await page.getByText("DONE 1", { exact: false }).click();
|
||
|
await page.getByText("DONE 2", { exact: false }).click();
|
||
|
|
||
|
const textboxes = await page.getByLabel("Textbox").all();
|
||
|
expect(textboxes).toHaveLength(1000);
|
||
|
});
|