From 8a173c801cdb4d8bc6fde71b0421ae7bf298b360 Mon Sep 17 00:00:00 2001
From: Alex Plate <aleksei.plate@jetbrains.com>
Date: Fri, 14 Mar 2025 15:38:27 +0200
Subject: [PATCH] Try not to wait till stripes to appear in UI tests for
 PyCharm

---
 tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt
index 0b8ee5f4b..93336bf54 100644
--- a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt
+++ b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt
@@ -44,12 +44,12 @@ class PyCharmTest {
   }
 
   private fun IdeaFrame.testEnterWorksInPyConsole() {
-    waitFor(duration = Duration.ofMinutes(5)) {
-      findAllText("Python Console").isNotEmpty() &&
-        findAllText("Version Control").isNotEmpty() &&
-        findAllText("Python Packages").isNotEmpty() &&
-        isSmartMode()
-    }
+//    waitFor(duration = Duration.ofMinutes(5)) {
+//      findAllText("Python Console").isNotEmpty() &&
+//        findAllText("Version Control").isNotEmpty() &&
+//        findAllText("Python Packages").isNotEmpty() &&
+//        isSmartMode()
+//    }
 
     // Open tool window by id.
     // id taken from PythonConsoleToolWindowFactory.ID but it's not resolved in robot by some reason