Skip to content

Instantly share code, notes, and snippets.

@endeepak
Created June 7, 2016 16:40
Show Gist options
  • Save endeepak/19a0a543f71d64405992f48a74ce3cba to your computer and use it in GitHub Desktop.
Save endeepak/19a0a543f71d64405992f48a74ce3cba to your computer and use it in GitHub Desktop.
HttpGet httpGet = new HttpGet("https://en.wikipedia.org/wiki/List_of_least_concern_birds");
HttpResponse httpResponse = client.execute(httpGet);
String responseHtml = IOUtils.toString(httpResponse.getEntity().getContent());
assertThat(responseHtml.length(), greaterThan(16348));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment