我在scripts/_Events.groovy
eventTestPhaseStart = {
geb.Browser.drive { go "http://localhost:8080/...." }
}
而grails test-app -functional
会记录错误
"The path to the driver executable must be set by the webdriver.ie.driver system property; ... "
我的GebConfig.groovy
设置为使用PhantomJS或Chrome,我的测试本身也通过了。所以我猜测在这个过程中,Geb配置还没有被读过。
有没有办法可以在测试阶段开始/结束事件中使用Geb Browser对象?