Can I add build tags to automation tests in Python-selenium?
Hi Richard,
If you want to add build tags to group builds in Python-Selenium on LambdaTest, you can follow the steps below:
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",
}
You can refer to sample test repo here.