Roland,
You seem to be mixing up concepts. Base url is a built in Geb concept and has nothing to do with BrowserStack and SauceLabs Gradle plugins. As per the manual in
http://gebish.org/manual/current/#geb-browserstack-plugin the application() method available inside of browserStack {} block allows you to:
> Specify which urls the BrowserStack Tunnel should be able to access. Multiple applications can be specified. If no applications are specified, the tunnel will not be restricted to particular URLs.
Secondly, please recall from the previous thread that I showed you how to configure the base url for test tasks generated by the BrowserStack plugin:
browserStack {
task {
systemProperty "geb.build.baseUrl", baseUrl
}
}
The same can be achieved in pretty much the same manner for the SauceLabs plugin:
sauceLabs {
task {
systemProperty "geb.build.baseUrl", baseUrl
}
}