I\'ve recently stumbled across geb and it looks like a good way to perform integration tests on our web applications. Our platforms are all java based and from reading that
I stumpled upon this question while searching a Geb-TestNG example. Here is what is working for me:
import geb.testng.GebTest import org.testng.annotations.Test class GroovyYourTestClass extends GebTest { @Test void "should test something"() { to YourPageObject // ... } }