mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
c2dfc592a4
* remove static while pending behaviour * add changeset * fix notebooks * add changeset * cleanup unused code + fix test * fix notebooks * oops * re-add check --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import { test, expect } from "@gradio/tootils";
|
|
|
|
test("chatinterface works with streaming functions and all buttons behave as expected", async ({
|
|
page
|
|
}) => {
|
|
const submit_button = page.getByRole("button", { name: "Submit" });
|
|
const retry_button = page.getByRole("button", { name: "🔄 Retry" });
|
|
const undo_button = page.getByRole("button", { name: "↩️ Undo" });
|
|
const clear_button = page.getByRole("button", { name: "🗑️ Clear" });
|
|
const textbox = page.getByPlaceholder("Type a message...");
|
|
|
|
await textbox.fill("hello");
|
|
await submit_button.click();
|
|
|
|
await expect(textbox).toHaveValue("");
|
|
const expected_text_el_0 = page.locator(".bot p", {
|
|
hasText: "Run 1 - You typed: hello"
|
|
});
|
|
await expect(expected_text_el_0).toBeVisible();
|
|
await expect
|
|
.poll(async () => page.locator(".bot.message").count(), { timeout: 2000 })
|
|
.toBe(1);
|
|
|
|
await textbox.fill("hi");
|
|
await submit_button.click();
|
|
await expect(textbox).toHaveValue("");
|
|
const expected_text_el_1 = page.locator(".bot p", {
|
|
hasText: "Run 2 - You typed: hi"
|
|
});
|
|
await expect(expected_text_el_1).toBeVisible();
|
|
await expect
|
|
.poll(async () => page.locator(".bot.message").count(), { timeout: 2000 })
|
|
.toBe(2);
|
|
|
|
await undo_button.click();
|
|
await expect
|
|
.poll(async () => page.locator(".message.bot").count(), { timeout: 5000 })
|
|
.toBe(1);
|
|
await expect(textbox).toHaveValue("hi");
|
|
|
|
await retry_button.click();
|
|
const expected_text_el_2 = page.locator(".bot p", {
|
|
hasText: "Run 3 - You typed: hello"
|
|
});
|
|
expect(textbox).toHaveValue("");
|
|
await expect(expected_text_el_2).toBeVisible();
|
|
|
|
await expect
|
|
.poll(async () => page.locator(".message.bot").count(), { timeout: 5000 })
|
|
.toBe(1);
|
|
|
|
await textbox.fill("hi");
|
|
await submit_button.click();
|
|
await expect(textbox).toHaveValue("");
|
|
const expected_text_el_3 = page.locator(".bot p", {
|
|
hasText: "Run 4 - You typed: hi"
|
|
});
|
|
await expect(expected_text_el_3).toBeVisible();
|
|
await expect
|
|
.poll(async () => page.locator(".bot.message").count(), { timeout: 2000 })
|
|
.toBe(2);
|
|
|
|
await clear_button.click();
|
|
await expect
|
|
.poll(async () => page.locator(".bot.message").count(), { timeout: 5000 })
|
|
.toBe(0);
|
|
});
|