UnitTest-browser-options icon indicating copy to clipboard operation
UnitTest-browser-options copied to clipboard

A sample repo to help you set browser-specific options in UnitTest on LambdaTest. Run your python automation test scripts on Lambdatest.

How to set browser specific options in UnitTest on LambdaTest

If you want to set browser specific options for an automation test in UnitTest on Lambdatest, you can use the following steps. You can refer to sample test repo here.

Steps:

You can specify the various browser specific options in the test file capabilities. The following is an example on how to set Chrome specific options using chromeOptions:

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",
                "chromeOptions" : {
                "args" : ["incognito"]  # ChromeOption to start chrome in incognito mode
                
            },
            "browserName": "Chrome",
            "browserVersion": "98.0",
        }

  • The different options available for Chrome can be referred to here.

  • For more information you can refer to this LambdaTest blog.

Run your test

python lambdatest.py

Links:

LambdaTest Community