如何使用Selenium为Safari,IE和Edge浏览器设置浏览器语言?

时间:2019-02-28 06:25:34

标签: selenium testing browser webdriver saucelabs

我了解您可以使用浏览器选项设置浏览器语言。例如-

在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浏览器上实现相同的目的?

我找不到与此相关的官方文档!

0 个答案:

没有答案