All you need to do is set
selenium.remote = true
in your SeleniumConfig.groovy and set selenium.url
to the root URL of the server where the app is running. Once this is done you can run tests as normal (note: when remote mode is used Selenium tests run in the other phase rather than the functional phase).The really useful thing is that SeleniumConfig.groovy can contain environment blocks just as other Grails config files can. This means you can enable remote mode in your CI environment but continue to test as normal locally. For example:
selenium { remote = false // etc. } environments { hudson { selenium.remote = true selenium.url = "http://my.test.server/" } }
The plugin release is a snapshot so you need to specify the version explictly:
grails install-plugin selenium-rc 0.2-SNAPSHOT
and you need to be using Grails 1.2.