WebHistory history = webView.getEngine().getHistory();
The history is basically a list of entries. Each entry represents a visited page and it provides access to relevant page info, such as URL, title, and the date the page was last visited.
The list can be obtained by using the getEntries() met...