Fix merge from master to 251

GitOrigin-RevId: 6d111e6f0560199599e94ae1dd611823c29b44c8
This commit is contained in:
Nikita.Ashihmin
2025-05-07 18:05:09 +04:00
committed by intellij-monorepo-bot
parent 69678008d3
commit 911b3586a7

View File

@@ -34,15 +34,6 @@ class NotebookEditorUiComponent(private val data: ComponentData) : JEditorUiComp
private val runAllCells
get() = x("//div[@myicon='runAll.svg']")
override val editorComponent: EditorComponentImpl
get() = when {
data.xpath.contains("EditorCompositePanel") -> driver.cast(
editor(topLevelEditorSearchPattern).component,
EditorComponentImpl::class
)
else -> super.editorComponent
}
fun addCodeCell(): Unit = addCellBelow.click()
fun addCodeCell(text: String) {