From 58001302ce263ccd3e2112bd2985c63d73b49940 Mon Sep 17 00:00:00 2001 From: Christine Zoglmeier Date: Wed, 6 Nov 2024 16:50:28 +0100 Subject: [PATCH] [TEST] Add timeout to fix failing test Related: https://projekte.in2code.de/issues/67890 --- Tests/Browser/PublishChangedContentTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tests/Browser/PublishChangedContentTest.php b/Tests/Browser/PublishChangedContentTest.php index e1b3112e2..3b6fc38fa 100644 --- a/Tests/Browser/PublishChangedContentTest.php +++ b/Tests/Browser/PublishChangedContentTest.php @@ -34,6 +34,8 @@ public function testChangedPageContentCanBePublished(): void WebDriverBy::cssSelector('[data-action="opendirtypropertieslistcontainer"]'), ); $info->click(); + // Workaround + sleep(2); self::assertPageContains($driver, '1b.1 Header - changed'); });