March 2018
Intermediate to advanced
324 pages
8h 30m
English
JBehave is a Java BDD framework used for writing acceptance tests that are able to be executed and automated. The steps used in stories are bound to Java code through several annotations provided by the framework:
dependencies {
testCompile 'org.jbehave:jbehave-core:3.9.5'
}
@Given("I go to Wikipedia homepage")
public void goToWikiPage() {
open("http://en.wikipedia.org/wiki/Main_Page");
}
Read now
Unlock full access