How to test geolocation in Selenium Python?

How to test geolocation in Selenium Python?

If you want to perform Selenium automation testing for a particular location in Python, you need to use ‘geolocation’ capability in your test scripts -

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",
                "geoLocation": "US"  
            },
            "browserName": "Chrome",
            "browserVersion": "98.0",
        }

Below is the GitHub repo to help you test geolocation in Selenium Python -