jbehave/jbehave-web


Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    
	dependencies {
		implementation 'com.github.jbehave:jbehave-web:jbehave-web-4.0-beta-1'
	}
	dependencies {
		implementation("com.github.jbehave:jbehave-web:jbehave-web-4.0-beta-1")
	}
	<dependency>
	    <groupId>com.github.jbehave</groupId>
	    <artifactId>jbehave-web</artifactId>
	    <version>jbehave-web-4.0-beta-1</version>
	</dependency>

                            
    libraryDependencies += "com.github.jbehave" % "jbehave-web" % "jbehave-web-4.0-beta-1"
        
        

                            
    :dependencies [[com.github.jbehave/jbehave-web "jbehave-web-4.0-beta-1"]]
        
        

Readme


JBehave-Web

JBehave is a collection of extension for JBehave that extend its capabilities in ways related to HTTP and the web.

<img src="http://jbehave.org/reference/preview/images/jbehave-logo.png" alt="JBehave logo" align="right" />

Modules

  1. Web-Selenium. Bindings to Selenium 1.0 and 2.0 allowing JBehave operate on web-sites.
  2. Web-Runner. A web-app that allow the synchronous experimental running of stories for non-developers.
  3. Web-Queue. A Web-interface for the enqueing of stories to be run later.

Using

Canonical information for JBehave:

  1. Documentation.
  2. User mailing list

Contributing and Developing

Please report issues, feature requests on JIRA issue tracker or discuss them on the dev mailing list.

Depended-on Technologies

JDK required: 1.7 (or above) Maven required (3.0 or above).

Encoding

Configure IDE to use UTF-8 for all files Configure Maven by adding "-Dfile.encoding=UTF-8" to $MAVEN_OPTS

IDE Integration

Maven is supported in Intellij IDEA out-of-the-box Maven is supported in Eclipse out-of-the-box

Building

A regular Maven build will suffice:

mvn install

Maven Build Profiles

  • default: builds all releasable modules
  • examples: builds all headless examples

Maven Build Profiles used during release cycle

  • reporting: builds reports
  • distribution: builds distribution (documentation)

Note: profiles are additive and the default profile is always active.

Example Profile Usages

Build Core and all Examples

mvn install -Pexamples

Build with Reporting and Distribution

mvn install -Preporting,distribution 

Building a Release with Maven

mvn release:prepare -Preporting,distribution 
mvn release:perform -Preporting,distribution

Related

See also the jbehave-core sister project for web extensions to JBehave, and jbehave-tutorial for a decent example of JBehave testing of a web application.

License

See LICENSE.txt in the source root (BSD).