From 8.11.0 to 8.12.0
In JxBrowser 8.12.0, we replaced the Frame.loadHtml()
method with the Navigation.loadHtml()
.
8.11.0 and earlier:
browser.mainFrame().ifPresent(frame -> {
frame.loadHtml("<html>Hello!</html>");
});
8.12.0:
browser.navigation().loadHtml("<html>Hello!</html>");