Hi.
Trying to reuse geb stuff across multiple web apps (different urls). In particular, I'd like to reuse config in GebConfig.groovy.
My GebConfig currently contains:
* baseUrl
* misc configuration (waiting, clear cookies, reportsDir, etc)
* environments (per-browser), as-well as some utility methods for those envs.
Would be good if I was able to extract everything other than the baseUrl to a common config ancestor, and have separate projects, each with a config that only defines its URL, and inheriting the rest from the common one.
Appreciate some guidance on this...