@Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    super.init();

    // LogCat: onReceivedHttpAuthRequest(browserspy.dk:80,BrowserSpy.dk - HTTP Password Test)
    AuthenticationToken token = new AuthenticationToken();
    token.setUserName("test");
    token.setPassword("test");
    super.setAuthenticationToken(token, "browserspy.dk:80", "BrowserSpy.dk - HTTP Password Test");

    // Add web site to whitelist
    super.appView.addWhiteListEntry("http://browserspy.dk*", true);

    // Load test
    super.loadUrl("file:///android_asset/www/basicauth/index.html");
  }