A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/HtmlUnit/htmlunit below:

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

Version 4.15.0 / August 17, 2025

❤️ Sponsor

htmlunit.org

Developer Blog

HtmlUnit@mastodon | HtmlUnit@bsky | HtmlUnit@Twitter

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.

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

Add to your pom.xml:

<dependency>
    <groupId>org.htmlunit</groupId>
    <artifactId>htmlunit</artifactId>
    <version>4.15.0</version>
</dependency>

Add to your build.gradle:

implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.15.0'

You can start here:

HtmlUnit can be used as a Selenium WebDriver-compatible browser through the htmlunit-driver. This integration allows you to use HtmlUnit as a headless browser option within Selenium test suites, providing fast execution without the overhead of launching a full browser instance.

Please have a look at the HtmlUnit Remote project if you like to use this driver from Selenium 4 Grid.

The htmlunit-jsoup library provides utilities to bridge the gap between HtmlUnit and jsoup. The HtmlUnitDOMToJsoupConverter enables seamless integration between HtmlUnit's comprehensive browser simulation capabilities and all the jsoup-based libraries, allowing you to leverage the full ecosystem of jsoup tools while maintaining HtmlUnit's JavaScript execution and dynamic content handling.

HtmlUnit is used as the underlying "browser" by different Open Source tools like

HtmlUnit is used by many projects for automated web testing

List of Vulnerabilities

Security Policy

Constantly updating and maintaining the HtmlUnit code base already takes a lot of time.

I would like to make 2 major extensions in the next few months

For doing this I need your sponsoring.

Pull Requests and all other Community Contributions are essential for open source software. Every contribution - from bug reports to feature requests, typos to full new features - are greatly appreciated.

Please try to keep your pull requests small (don't bundle unrelated changes) and try to include test cases.

The latest builds are available from our Jenkins CI build server

Read on if you want to try the latest bleeding-edge snapshot.

Add the snapshot repository and dependency to your pom.xml:

    <!-- ... -->
    <repository>
        <name>Central Portal Snapshots</name>
        <id>central-portal-snapshots</id>
        <url>https://central.sonatype.com/repository/maven-snapshots/</url>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>

    <!-- ... -->
    <dependencies>
      <dependency>
          <groupId>org.htmlunit</groupId>
          <artifactId>htmlunit</artifactId>
          <version>4.15.0-SNAPSHOT</version>
      </dependency>
      <!-- ... -->
    </dependencies>

    <!-- ... -->

Add the snapshot repository and dependency to your build.gradle:

repositories {
  maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
  // ...
}
// ...
dependencies {
    implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.15.0-SNAPSHOT'
  // ...
}

This project is licensed under the Apache 2.0 License

Checkout these pages on our website for detailed hints about starting with the development:

HtmlUnit at openhub


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4