Skip to content

Elmasekar/Python-selenium-headless

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

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.

Steps:

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",
        }

Run your test

python lambdatest.py

Links:

LambdaTest Community