Skip to content

Latest version of Browserstack Tunnel has different 'success' message #607

@mgalos999

Description

@mgalos999

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'

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions