Provides extensions for enhancing Concordion output.

This package contains extensions to:

  1. embed logging information in the Concordion output
  2. embed screenshots in the Concordion output
  3. change the timestamp in the footer of the Concordion output from milliseconds to hours, minutes and seconds

To add all of the extensions, set the system property concordion.extensions to org.concordion.ext.Extensions. This is typically set in the @BeforeClass of a base test case:

    @BeforeClass
    public static void addExtensions() {
      System.setProperty("concordion.extensions", "org.concordion.ext.Extensions");
    }

The extensions may also be installed individually and have a number of customisation options. See the Javadoc of each extension for details. To install multiple or customised extensions, supply a comma-separated list of extensions or extension factories in the concordion.extensions system property.