Skip to content

2.3.2

Compare
Choose a tag to compare
@fhoeben fhoeben released this 01 Dec 20:55
· 2302 commits to master since this release

Release 2.3.2 of the project contains the latest FitNesse (20150814) and Selenium (2.48.2) releases.

Please note: this Selenium version requires Java 7. The fixtures still work with Java 6, but you will have to downgrade to Selenium 2.46.0

To get started by running some sample tests (if you have a Java runtime installed): just download the standalone.zip, extract it and run it (using 'java -jar fitnesse-standalone.jar -p 9090', or on Windows just double clicking the jar to run the application on port 80 instead of 9090) from the directory where the 'standalone.zip' was extracted and open a browser to http://localhost:9090/HsacExamples.

Please note: please extract the zip to a location without spaces in its own name or in the names of its parents.

A clone or download of the sources and running with Maven and Java Development Kit is the way to go if you want to develop/debug fixtures.

To incorporate the fixtures in an existing FitNesse project you can also get it from Maven Central

        <dependency>
            <groupId>nl.hsac</groupId>
            <artifactId>hsac-fitnesse-fixtures</artifactId>
            <version>2.3.2</version>
        </dependency>

See HsacExamples.NotesOnUpgrade in the installation's wiki for upgrade information from 1.10

New in 2.3.2:

  • http test
    • can now also check HTTP headers on responses received using response header <name>
  • browser test:
    • now also able to deal with frames (inside framesets) in the same manner as (the already supported) iframes.
    • implicit finding of elements in (i)frames can be disabled if needed using set implicit find in frames to <true/false>
    • added method to check whether an element is enabled: is enabled <place>
    • added support to click inputs of type submit/reset that have no value (browser will show a button with text Submit/Reset)