diff --git a/src/frontend/tests/extended/regression/general-bugs-reset-flow-run.spec.ts b/src/frontend/tests/extended/regression/general-bugs-reset-flow-run.spec.ts index 61c5548e27f3..b4c6ab6a3ecc 100644 --- a/src/frontend/tests/extended/regression/general-bugs-reset-flow-run.spec.ts +++ b/src/frontend/tests/extended/regression/general-bugs-reset-flow-run.spec.ts @@ -8,7 +8,7 @@ import { awaitBootstrapTest } from "../../utils/await-bootstrap-test"; import { zoomOut } from "../../utils/zoom-out"; test( - "user must be able to send images in the playground with the agent component", + "user can run flow with If-Else component multiple times with different branches", { tag: ["@release", "@components"] }, async ({ page }) => { await awaitBootstrapTest(page); @@ -142,9 +142,15 @@ test( // retest to make sure we can run again the flow with the first branch of the If-Else component + await page.waitForTimeout(500); + await page.getByTestId("popover-anchor-input-input_text").fill("1"); + await page.waitForTimeout(500); + await page.getByTestId("button_run_text output").click(); + await page.waitForTimeout(500); + await page.waitForSelector("text=built successfully", { timeout: 30000 }); numberOfSuccessfullComponentsRun = 0;