How to set test name for automation test in Python-selenium on LambdaTest?

How to set test name for automation test in Python-selenium on LambdaTest?

Hey Rebecca,

To set test name for selenium automation test in Python-selenium on LambdaTest, the following steps can be followed. You can refer to sample test repo here:

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

You can refer to the Github Repo for the same: GitHub - Elmasekar/Python-selenium-set-testname: A sample repo to help you set the test name for automation test in Python-selenium on LambdaTest. Run your automation test scripts on Lambdatest.