i'm working with selenium and the chrome driver in python. I can setup the language of my chrome browser like this:
options = webdriver.ChromeOptions()
options.add_experimental_option('prefs', {'intl.accept_languages': 'en,en_US'})
This works like a charm, but as soon as i add the headless argument i get results in german again:
options.add_argument("--headless")
Thank you guys for your time.