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