diff --git a/apps/web/playwright/fixtures/regularBookings.ts b/apps/web/playwright/fixtures/regularBookings.ts index c65568723f..81212335c1 100644 --- a/apps/web/playwright/fixtures/regularBookings.ts +++ b/apps/web/playwright/fixtures/regularBookings.ts @@ -194,7 +194,7 @@ export function createBookingPageFixture(page: Page) { await eventTypePage.getByPlaceholder(reschedulePlaceholderText).click(); await eventTypePage.getByPlaceholder(reschedulePlaceholderText).fill("Test reschedule"); await eventTypePage.getByTestId("confirm-reschedule-button").click(); - await eventTypePage.waitForTimeout(200); + await eventTypePage.waitForTimeout(400); if ( await eventTypePage.getByRole("heading", { name: "Could not reschedule the meeting." }).isVisible() ) { @@ -256,7 +256,7 @@ export function createBookingPageFixture(page: Page) { options.isRequired && (await fillQuestion(eventTypePage, secondQuestion, customLocators)); await eventTypePage.getByTestId(confirmButton).click(); - await eventTypePage.waitForTimeout(200); + await eventTypePage.waitForTimeout(400); if (await eventTypePage.getByRole("heading", { name: "Could not book the meeting." }).isVisible()) { await eventTypePage.getByTestId("back").click(); await eventTypePage.getByTestId("time").last().click();