Hey all
Im using webview inside my app and with the robot i see
ChatWebviewContentPanel. webviewname: ‘chat’.
LoadingDecoratorLayeredPane. JPanel
MyPanel.
JPanel
when i use
val myPanel = find(byXpath(“//div[contains(@class, ‘MyPanel’)]”))
println(“Found MyPanel: $myPanel”)
// Then find the JPanel inside it
val jPanel = myPanel.find<ContainerFixture>(byXpath(".//div[@class='JPanel']"))
println("Found JPanel inside MyPanel: $jPanel")
I get Found JPanel inside MyPanel: com.intellij.remoterobot.fixtures.ContainerFixture@2c95ac9e
but how do i pull the data from it? and why i cant see the inside in http://localhost:8082/#intellij-platform
Thank you