How to run browser in headless mode in UnitTest on LambdaTest
If you want to run a browser in headless mode for an automation test in UnitTest on Lambdatest, you can use the following steps. You can refer to sample test repo here.
You can run a test in headless mode by providing it as a capability in test file. The capabilities would look something like this:
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",
"headless": True
},
"browserName": "Chrome",
"browserVersion": "98.0",
}
python lambdatest.py