MockWebConnection webConnection = new MockWebConnection();
webConnection.setDefaultResponse(html);
WebClient webClient = new WebClient();
webClient.setWebConnection(webConnection);
webClient.getOptions().setThrowExceptionOnScriptError(false);
webClient.setIncorrectnessListener(new IncorrectnessListener() {
@Override
public void notify(String arg0, Object arg1) {
}
});
return webClient.getPage("http://blah");