diff --git a/platform/remote-driver/test-sdk/src/com/intellij/driver/sdk/ui/components/PopupUI.kt b/platform/remote-driver/test-sdk/src/com/intellij/driver/sdk/ui/components/PopupUI.kt index 3542d816a7d5..0d315e1d9ff7 100644 --- a/platform/remote-driver/test-sdk/src/com/intellij/driver/sdk/ui/components/PopupUI.kt +++ b/platform/remote-driver/test-sdk/src/com/intellij/driver/sdk/ui/components/PopupUI.kt @@ -72,4 +72,6 @@ class PopupItemUiComponent(data: ComponentData) : UiComponent(data) { fun getIconPath() = "path=(.*),".toRegex().find(popupComponent.getIcon().toString())?.let { it.groups.last()?.value ?: "empty" } ?: "empty" + + override fun toString(): String = super.toString() + " '" + getText() + "'" } \ No newline at end of file