The Browserstack Tunnel is downloaded, launched and killed by the gradle-browserstack plugin.
When the tunnel is launched, the output text is checked for a specific success message.
Currently this text is You can now access your local server(s) in our remote browser..
However Browserstack have released a new version of the tunnel where the period is missing at the end of the message. You can now access your local server(s) in our remote browser
This makes the plugin timeout as it doesn't find the exact text.
Looks like just the period needs to be removed and it will fix this problem while maintaining backward compatibility. final String tunnelReadyMessage = 'You can now access your local server(s) in our remote browser.'
to final String tunnelReadyMessage = 'You can now access your local server(s) in our remote browser'
The text was updated successfully, but these errors were encountered:
Publishing to Maven Central was flaky on Saturday morning when I was trying to release the first time and I obviously got it wrong on the second attempt.
The Browserstack Tunnel is downloaded, launched and killed by the gradle-browserstack plugin.
When the tunnel is launched, the output text is checked for a specific success message.
Currently this text is
You can now access your local server(s) in our remote browser.
.However Browserstack have released a new version of the tunnel where the period is missing at the end of the message.
You can now access your local server(s) in our remote browser
This makes the plugin timeout as it doesn't find the exact text.
https://github.com/geb/geb/blob/master/integration/geb-gradle/src/main/groovy/geb/gradle/browserstack/BrowserStackTunnel.groovy
Looks like just the period needs to be removed and it will fix this problem while maintaining backward compatibility.
final String tunnelReadyMessage = 'You can now access your local server(s) in our remote browser.'
to
final String tunnelReadyMessage = 'You can now access your local server(s) in our remote browser'
The text was updated successfully, but these errors were encountered: