diff --git a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt
index 4e31d1b18..5fd6d9580 100644
--- a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt
+++ b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt
@@ -69,6 +69,10 @@ class PyCharmTest {
   private fun RemoteRobot.startNewProject() {
     welcomeFrame {
       createNewProjectLink.click()
+      waitFor {
+        // Waiting till the SDK will be detected by PyCharm
+        findAllText("detected in the system").isNotEmpty()
+      }
       button("Create").click()
     }
   }