Skip to content
alexnederlof edited this page Dec 23, 2012 · 30 revisions

Welcome to the crawljax wiki!

General information about the project can be found on the Crawljax website.

Maven

To include Crawljax in your project, you can declare it as a Maven dependency:

<dependency>
	<groupId>com.crawljax</groupId>
	<artifactId>crawljax</artifactId>
	<version>2.1</version>
</dependency>

The maven dependency of Crawljax comes without a Logger implementation for the SLF4J-api. To see the log, you have to provide one yourself. We like to use Logback. To use the default Logback configuration to see Crawljax output, just declare the Logback dependency in you pom:

<dependency>
    <groupId>ch.qos.logback</groupId>
    <artifactId>logback-classic</artifactId>
    <version>1.0.9</version>
</dependency>

This will print all output to the console. You can tame the output by creating a Logback configuration file.

Using Crawljax

Writing Plugins

Working on Crawljax code

Selenium WebDriver

Crawljax uses Selenium WebDriver APIs to drive different browsers (e.g., Firefox, Chrome, IE, ...). See also the WebDriver FAQ.

Clone this wiki locally