We would like to rename tunnelId with tunnelName for a better convention for the end users, as we have tunnelId and tunnelName as two different convention for LambdaTest tunnel, where tunnelId is an integer value which is uniquely generated for each LambdaTest tunnel.
In Geb code, following changes are required:
- doc/manual/src/docs/asciidoc/111-cloud-browsers.adoc as:
def tunnelName = System.getenv("GEB_LAMBDATEST_TUNNEL_NAME")
assert tunnelName
new LambdaTestDriverFactory().create(lambdaTestBrowser, username, accessKey, tunnelName)
-
integration/geb-gradle/src/main/groovy/geb/gradle/lambdatest/LambdaTestTunnelOps.groovy
Replace LOCAL_ID_ENV_VAR to TUNNEL_NAME_ENV_VAR
Replace GEB_LAMBDATEST_TUNNELID to GEB_LAMBDATEST_TUNNEL_NAME
-
module/geb-core/src/main/groovy/geb/driver/LambdaTestDriverFactory.groovy
Replace tunnelId to tunnelName
Replace GEB_LAMBDATEST_TUNNELID to GEB_LAMBDATEST_TUNNEL_NAME
We would like to rename tunnelId with tunnelName for a better convention for the end users, as we have tunnelId and tunnelName as two different convention for LambdaTest tunnel, where tunnelId is an integer value which is uniquely generated for each LambdaTest tunnel.
In Geb code, following changes are required:
integration/geb-gradle/src/main/groovy/geb/gradle/lambdatest/LambdaTestTunnelOps.groovy
Replace LOCAL_ID_ENV_VAR to TUNNEL_NAME_ENV_VAR
Replace GEB_LAMBDATEST_TUNNELID to GEB_LAMBDATEST_TUNNEL_NAME
module/geb-core/src/main/groovy/geb/driver/LambdaTestDriverFactory.groovy
Replace tunnelId to tunnelName
Replace GEB_LAMBDATEST_TUNNELID to GEB_LAMBDATEST_TUNNEL_NAME