UI robot - my app using webview, how do i pull the DOM with the robot

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

Hi, use com.intellij.remoterobot.fixtures.JCefBrowserFixture to interact with embedded browser

I get an error that the webview is not initialized but it is