I am trying to access my FritzBox via HTMLUnit, but got error that my browser was too old and not supported.
try (final WebClient webClient = new WebClient(BrowserVersion.CHROME)) {
webClient.getOptions().setJavaScriptEnabled(true);
webClient.getOptions().setRedirectEnabled(true);
final HtmlPage page1 = webClient.getPage("http://fritz.box/");
System.out.println(page1.getWebResponse().getContentAsString());
}
From a first analysis: The UI does some browser checks to make sure the used features are supported by your browser.
The check looks like this (see js/browser.js)
HtmlUnit (as of version 2.56) does not support javascript Proxy's and that is the reason this check fails and finally you are redirected to /sorry.lua.
Again - please open an issue at https://github.com/HtmlUnit/htmlunit.