Skip to content

AdarshMaurya/htmlunit

 
 

Repository files navigation

HtmlUnit

HtmlUnit is a "GUI-Less browser for Java programs". It models HTML documents and provides an API that allows you to invoke pages, fill out forms, click links, etc... just like you do in your "normal" browser.

It has fairly good JavaScript support (which is constantly improving) and is able to work even with quite complex AJAX libraries, simulating Chrome, Firefox or Internet Explorer depending on the configuration used.

It is typically used for testing purposes or to retrieve information from web sites.

Project News

HtmlUnit@Twitter

Latest release Version 2.33 / Sep 12, 2018

Download from Sourceforge

For maven, you would add:

<dependency>
    <groupId>net.sourceforge.htmlunit</groupId>
    <artifactId>htmlunit</artifactId>
    <version>2.33</version>
</dependency>

Latest CI build

Features

  • Support for the HTTP and HTTPS protocols
  • Support for cookies
  • Ability to specify whether failing responses from the server should throw exceptions or should be returned as pages of the appropriate type (based on content type)
  • Support for submit methods POST and GET (as well as HEAD, DELETE, ...)
  • Ability to customize the request headers being sent to the server
  • Support for HTML responses ** Wrapper for HTML pages that provides easy access to all information contained inside them ** Support for submitting forms ** Support for clicking links ** Support for walking the DOM model of the HTML document
  • Proxy server support
  • Support for basic and NTLM authentication
  • Excellent JavaScript support (see the JavaScript section below)

License

This project is licensed under the Apache 2.0 License

About

HtmlUnit is a "GUI-Less browser for Java programs".

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 41.9%
  • HTML 30.9%
  • JavaScript 24.3%
  • CSS 1.9%
  • PHP 0.6%
  • XSLT 0.4%