tag | e428b45a66c433b157def4d23f06b1bbc477ca22 | |
---|---|---|
tagger | puneetbehl <behlp@objectcomputing.com> | Wed Dec 13 06:15:22 2023 +0000 |
object | 270c293c6f1c3eae83031e9cb37333d415d7902c |
Release v4.0.0
commit | 270c293c6f1c3eae83031e9cb37333d415d7902c | [log] [tgz] |
---|---|---|
author | puneetbehl <behlp@objectcomputing.com> | Wed Dec 13 06:15:22 2023 +0000 |
committer | puneetbehl <behlp@objectcomputing.com> | Wed Dec 13 06:15:22 2023 +0000 |
tree | 8d3ca2a6fed2871d73a6c1e291a639a1c2fd3578 | |
parent | ae1b657f13833de6ecbf9cccc186eba1115c8b4f [diff] |
[skip ci] Release v4.0.0
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() }