How do I configure LambdaTest tunnel using the Java Selenide framework?

How do I configure LambdaTest tunnel using the Java Selenide framework?

Hi Yanisleidi!

To run the LambdaTest tunnel using Selenide framework, follow the below steps -

  1. After downloading the binary file, extract it to a folder
  2. Open up terminal and navigate to the extracted folder.
  3. Run the following command.
LT --user {user's login email} --key {user's access key} --tunnelName {user's tunnel name}

Once you are able to connect LambdaTest Tunnel successfully, you would just have to pass on tunnel capabilities in the code as shown below:

 DesiredCapabilities capabilities = new DesiredCapabilities();
           capabilities.setCapability("tunnel", true);