How to add geolocation to an automation test in Pytest on LambdaTest
If you want to run your automation test for a particular location in Pytest on Lambdatest, you can use the following steps. You can refer to sample test repo here.
To run your automation test from a particular location to test location based functionality, you can change the geolocation using the 'geolocation' capability:
capabilities = {
"build": "Sample PY Build",
"platformName": "Windows 11",
"browserName": "Chrome",
"browserVersion": "latest",
"geoLocation": "US"
}
For the full list of available geolocations, you can refer here.
cd tests //navigate to tests directory
python sample_todo.py