tag | 78d46a456b54697ee19a20e0174745ce40ec76ad | |
---|---|---|
tagger | puneetbehl <behlp@objectcomputing.com> | Sat Oct 07 03:44:41 2023 +0000 |
object | f05a277a9ba67051721ad658b57178eb961dc749 |
Release v3.0.1
commit | f05a277a9ba67051721ad658b57178eb961dc749 | [log] [tgz] |
---|---|---|
author | puneetbehl <behlp@objectcomputing.com> | Sat Oct 07 03:44:41 2023 +0000 |
committer | puneetbehl <behlp@objectcomputing.com> | Sat Oct 07 03:44:41 2023 +0000 |
tree | 3e314fa94eef790e0498bf7ef5e89c3e36e7657d | |
parent | b7c29298c42a1f0ab855bb3a58c9c0f25f2f55d0 [diff] |
[skip ci] Release v3.0.1
Geb Functional Testing for GrailsĀ® framework
This plugin just provides the Geb dependencies and a create-functional-test
command for generating Geb tests in a Grails app. For further reference please see the Geb documentation
If you are looking for examples check:
or Grails functional test suite where Geb tests are used extensively.
To setup additional drivers you need to add the driver to your build.gradle
for example:
testRuntime 'com.github.detro:phantomjsdriver:1.2.0'
Then you need to create a GebConfig.groovy
file to your src/test/resources/
directory. For example:
/* This is the Geb configuration file. See: http://www.gebish.org/manual/current/#configuration */ import org.openqa.selenium.chrome.ChromeDriver import org.openqa.selenium.firefox.FirefoxDriver import org.openqa.selenium.phantomjs.PhantomJSDriver waiting { timeout = 2 } driver = { new PhantomJSDriver() }