Projects tagged ‘htmlunit’


[11 total ]

31 Users
   

HtmlUnit is a "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. ... [More] It has fairly good JavaScript support (which is constantly improving) and is able to work even with quite complex AJAX libraries, simulating either Firefox or Internet Explorer depending on the configuration you want to use. It is typically used for testing purposes or to retrieve information from web sites. [Less]
Created over 3 years ago.

14 Users
 

Canoo WebTest is a free open source tool for automated testing of web applications. It calls web pages and verifies results, giving comprehensive reports on success and failure.
Created over 3 years ago.

6 Users
   

HttpUnit emulates the relevant portions of browser behavior, including form submission, Javascript, basic HTTP authentication, cookies, and automatic page redirection, and allows Java test code to ... [More] examine returned pages either as text, an XML DOM, or containers of forms, tables, and links. When combined with a framework such as JUnit, it is fairly easy to write tests that very quickly verify the functioning of a Web site. [Less]
Created over 3 years ago.

2 Users

Celerity is a JRuby wrapper around HtmlUnit – a headless Java browser with JavaScript support. It provides a simple API for programmatic navigation through web applications. Celerity aims at being API compatible with Watir.
Created about 1 year ago.

0 Users

This project is designed to provide a framework for writing and maintaining browser based GUI testing. The principal here is to provide the ability to run the same test script using either a browser emulator or full browser.
Created 4 months ago.

0 Users

ElissaWebTest is a JAVA based Web Testing Integration Tool. It integrates frameworks (JUnit,TestNG) with tools (selenium API, htmlunit, httpunit) to allow tests to be easily executed on any ... [More] combination of these frameworks and tools (without any code changes) by providing a powerful easy-to-use testing API. [Less]
Created 12 months ago.

0 Users

HtmlNext
Created 5 months ago.

0 Users

Light bridge which converts selenium scripts to the htmlunit calls. Works like JWebUnit.
Created 12 months ago.

0 Users

Watin Fork to Incorporate HtmlUnit via IKVM
Created 9 months ago.

0 Users

Based on the assumption that the most stable part of the web application to be tested is the human readable semantic elements. Write test scripts as if describing to a user (over the phone or in ... [More] documentation) what to click, type etc. So your tests should not need altering if you move your HTML around or change to/from links to buttons etc. robot.click("create user"); robot.set("Name", "Sam"); robot.click("Gender", "male"); robot.click("save"); robot.back(); assertEquals("Sam", robot.get("Name")); assertTrue(robot.isChecked("Geek", "yes"));TheoryYour tests should only depend on the very simple com.redspr.redrobot.Robot interface which is based on the conversation you would have with your most stupid user. A simple algorithm is used to find the best match element based on one or more matching strings. ImplementationBehind the simple Robot interface implementations using Selenium RC or HtmlUnit are provided. [Less]
Created about 1 year ago.