From b3aaf75b485554d572820d72e0d2f0ab26a985a7 Mon Sep 17 00:00:00 2001 From: Alex Plate <aleksei.plate@jetbrains.com> Date: Fri, 14 Mar 2025 16:06:18 +0200 Subject: [PATCH] Use different tracking marker for UI tests PyCharm --- tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt index 93336bf54..8961626e8 100644 --- a/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt +++ b/tests/ui-py-tests/src/test/kotlin/PyCharmTest.kt @@ -74,7 +74,7 @@ class PyCharmTest { waitFor(duration = Duration.ofSeconds(30)) { // Waiting till the SDK will be detected by PyCharm this@startNewProject.findAll<ComponentFixture>(byXpath("//div[@class='SimpleColoredComponent']")) - .any { it.hasText { text -> text.text.contains("detected in the system") } } + .any { it.hasText { text -> text.text.contains("/usr/bin/python3") } } } button("Create").click() }