From 7.x.x to 8.x.x
Within 7.x.x
From 6.x to 7.0
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>");