[ui-tests][clion] CPP-39615 Implemented all four debug test, fixed review comments

GitOrigin-RevId: c5eda04590bbd393c23e7966f2c40bc5aed41a3d
This commit is contained in:
Artem.Grigorash
2024-08-06 19:15:59 +03:00
committed by intellij-monorepo-bot
parent 142176a889
commit fa5b4f7f49
2 changed files with 2 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package com.intellij.driver.sdk.ui.components
class DebugToolWindowUi(data: ComponentData) : UiComponent(data) {
val consoleTab get() = x { and(byClass("SimpleColoredComponent"), byAccessibleName("Console")) }
val threadsAndVariablesTab get() = x { and(byClass("SimpleColoredComponent"), byAccessibleName("Threads & Variables")) }
val consoleView get() = x { byType("com.intellij.execution.impl.ConsoleViewImpl") }
}

View File

@@ -18,6 +18,7 @@ class ToolWindowLeftToolbarUi(data: ComponentData) : UiComponent(data) {
val terminalButton = stripeButton { byAccessibleName("Terminal") }
val problemsButton = stripeButton { byAccessibleName("Problems") }
val moreButton = stripeButton { byAccessibleName("More") }
val debugButton = stripeButton { byAccessibleName("Debug") }
}
class ToolWindowRightToolbarUi(data: ComponentData) : UiComponent(data) {