2023-05-12 23:22:25 +08:00
|
|
|
import { test, expect } from "@playwright/test";
|
|
|
|
import { mock_theme, wait_for_page, mock_api, mock_demo } from "./utils";
|
2022-05-27 16:53:50 +08:00
|
|
|
|
|
|
|
test("renders the correct elements", async ({ page }) => {
|
2022-08-18 03:43:26 +08:00
|
|
|
await mock_demo(page, "blocks_inputs");
|
|
|
|
await mock_api(page, [["hi dawood"]]);
|
2023-03-27 22:52:07 +08:00
|
|
|
await mock_theme(page);
|
|
|
|
await wait_for_page(page);
|
2022-05-27 16:53:50 +08:00
|
|
|
|
2022-10-13 00:30:42 +08:00
|
|
|
const textboxes = await page.getByLabel("Input");
|
|
|
|
|
|
|
|
const textboxOne = await textboxes.first();
|
|
|
|
const textboxTwo = await textboxes.last();
|
2022-05-27 16:53:50 +08:00
|
|
|
|
2022-08-18 03:43:26 +08:00
|
|
|
await textboxOne.fill("hi");
|
|
|
|
await textboxTwo.fill("dawood");
|
2022-10-13 00:30:42 +08:00
|
|
|
await Promise.all([
|
|
|
|
page.click('text="Submit"'),
|
2023-03-08 00:36:25 +08:00
|
|
|
page.waitForResponse("**/run/predict")
|
2022-10-13 00:30:42 +08:00
|
|
|
]);
|
|
|
|
|
|
|
|
await expect(await page.getByLabel("Output")).toHaveValue("hi dawood");
|
2022-05-27 16:53:50 +08:00
|
|
|
});
|