-
Notifications
You must be signed in to change notification settings - Fork 4
Description
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'