How to add build tags to automation tests in UnitTest on LambdaTest?

Let me know how I can add build tags to automation tests in UnitTest on LambdaTest.

Hello Devan, We add these to the test by setting the buildTags capability tags in UnitTest. Here is the code you can use:

> 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",
>                 "buildTags": ["test-build1","test-build2"]   #change build tags here      
>             },
>             "browserName": "Chrome",
>             "browserVersion": "98.0",
>         }

Download and configure the GitHub repo:

https://github.com/Elmasekar/UnitTest-build-tags