使用chromedriver打开时,如何设置中文Chrome浏览器?
使用chromedriver打开chrome时,其默认语言为英语,如何用中文设置。
答案 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);