我需要使用具有特定浏览器语言的远程Webdriver启动Firefox / Chrome。我知道如何在本地运行时执行此操作。但是可以通过指定浏览器语言来启动远程Webdriver。
答案 0 :(得分:0)
这是RemoteWebDriver创建对象的方式,
WebDriver driver = new RemoteWebDriver(new URL("http://localhost:PORT_NUMBER/"), DesiredCapabilities.firefox());
补白是这里的关键,
var fp = new FirefoxProfile();
fp.SetPreference("intl.accept_languages", "en-au");
desiredCap.SetCapability(FirefoxDriver.ProfileCapabilityName,fp.ToBase64String());
您的代码似乎特定于chrome,因此您可以使用它,希望对您有所帮助,
var options = new ChromeOptions();
options.AddArgument("--lang=zh"); // this sets US english
desiredCap.SetCapability(ChromeOptions.Capability, options);
WebDriver driver = new RemoteWebDriver(new URL("http://localhost:PORT_NUMBER/"), desiredCap.chrome());