Hello,
i found these code in python that trigger auto translation on a website using prefs
options = Options()
prefs = {
"translate_whitelists": {"fr":"en"},
"translate":{"enabled":"true"}
}
options.add_experimental_option("prefs", prefs)
browser = webdriver.Chrome(chrome_options=options)
i did add the same option into chromedriver, however it fail, can you edit my code
here is my code
_WD_CapabilitiesAdd('prefs', '{"translate_whitelists": {"jp":"en"}, "translate": {"enabled": "true"}}')
thank you