我了解您可以使用浏览器选项设置浏览器语言。例如-
在Firefox上-
FirefoxProfile fp = new FirefoxProfile();
fp.setPreference("intl.accept_languages", "en-gb");
caps.setCapability(FirefoxDriver.PROFILE,fp);
在Chrome上-
ChromeOptions options = new ChromeOptions();
options.addArguments("--lang=en-gb");
caps.setCapability(ChromeOptions.CAPABILITY,options);
如何使用Selenium在Safari,IE和Edge浏览器上实现相同的目的?
我找不到与此相关的官方文档!