Selenium设置浏览器的启动语言
Posted testdeveloper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium设置浏览器的启动语言相关的知识,希望对你有一定的参考价值。
python3.7
Chrome:
# 修改lang=zh-CN即可更改语言, 可在 https://blog.csdn.net/Sam_ONE/article/details/102571595 下寻找对应的
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument(‘lang=zh-CN‘)
driver = webdriver.Chrome(options=chrome_options)
Firefox:
# FireFox_Configure_path 为火狐浏览器不同语言下的配置文件,firefox_path为火狐浏览器geckodriver.exe的所在目录
ffprofile = webdriver.FirefoxProfile("%s"%FireFox_Configure_path )
driver = webdriver.Firefox(executable_path=firefox_path, firefox_profile=ffprofile)
以上是关于Selenium设置浏览器的启动语言的主要内容,如果未能解决你的问题,请参考以下文章
Python Selenium.WebDriver 浏览器启动参数设置『Edge如何使用启动参数』
Selenium:启动 IE 时出现意外错误。浏览器缩放级别设置为 122%。应该设置为 100%
Selenium Webdriver - 设置首选浏览器语言DE
selenium webdriver 启动chrome浏览器时 要带正常的浏览器扩展插件等设置,python代码报错,代码在补充里