How to run an automation test in Python-selenium in headless mode on on LambdaTest
If you want to set browser specific options for an automation test in Python-selenium 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