How can I run the Cloud tunnel if I am running C# or Python automation tests?

I need to run the Cloud tunnel.

Hello Noah,

You can run the shell script to download, extract and run tunnel binary in the YML file. Here is the script:

sh "wget http://downloads.lambdatest.com/tunnel/linux/64bit/LT_Linux.zip"
sh 'sudo apt-get install --no-act unzip'
sh 'unzip -o LT_Linux.zip'
sh "./LT -user ${env.LT_USERNAME} -key ${env.LT_ACCESS_KEY} &"
sh "rm -rf LT_Linux.zip"