Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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;
Expand Down
Loading