In an open page loaded frame:
<iframe id="wikipedia" src="http://en.wikipedia.org"></iframe>
Trying to get to the content:
Document document = webEngine.getDocument();
Element elementById = document.getElementById("wikipedia");
System.out.println(elementById.getTextContent());
But do not achieve results ...