Elmasekar / UnitTest-tunnel

A sample repo to help you start tunnel for automation test in UnitTest on LambdaTest. Run your python automation test scripts on Lambdatest.

Home Page:https://www.lambdatest.com/unittest-testing/?utm_source=github&utm_medium=about&utm_campaign=unittest_tunnel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to start tunnel for automation test in UnitTest on LambdaTest

If you want to run your an automation test in UnitTest on LambdaTest using the tunnel and want to start the tunnel automatically in the script, you can use the follwing steps. You can refer to sample test repo here.

Steps

Step 1: Download the LT tunnel binary from LT Dashboard

Go to your LambdaTest dashboard and click the configure tunnel button on the top right corner and use the download link to download the binary file.

Step 2: Code to run LT tunnel before test

The tunnel should be started before test case execution and end after completion. To achieve this, tunnel can be started in the main function like so:

import subprocess

if __name__ == "__main__":

    #start tunnel process
    tunnel_process = subprocess.Popen(["./LT","--user",username,"--key",access_key],stdout=subprocess.DEVNULL,stderr=subprocess.STDOUT)
    
    #run testcases
    unittest.main()

    #end tunnel
    tunnel_process.terminate()

Step 3: Set tunnel capability to True

Add the "tunnel": True capability in your test file:

desired_caps = {
            'LT:Options': {
                "build": "Python Demo",  # Change your build name here
                "name": "Python Demo Test",  # Change your test name here
                "platformName": "Windows 11",
                "selenium_version": "4.0.0",
                "tunnel": True
            },
            "browserName": "Chrome",
            "browserVersion": "98.0",
        }

Step 4: Run your test

python lambdatest_test.py

Links:

LambdaTest Community