当我用chromedriver打开它时,如何用中文设置chrome?

时间:2016-01-04 07:53:29

标签: selenium-webdriver selenium-chromedriver

使用chromedriver打开时,如何设置中文Chrome浏览器?

  

使用chromedriver打开chrome时,其默认语言为英语,如何用中文设置。

1 个答案:

答案 0 :(得分:0)

您可以通过添加Chrome command line switches --lang

来实现

基本上,您只需使用ChromeDriver参数--lang=zh启动ChromeOptions,有关详细信息,请参阅API。

ChromeOptions options = new ChromeOptions();
options.addArguments("--lang=zh");
ChromeDriver driver = new ChromeDriver(options);