mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
19d4ee62c3
* changes * changes * changes * add changeset * changes * changes * changes * changes * Update gradio/blocks.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
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);
|
|
});
|