Я хочу запустить свои тесты на селен на другом языке браузера. Я попробовал два SO ответа и даже поддержку BrowserStack безуспешно.
Я надеялся, что это будет быстрое и простое исправление, но то, что выглядит как простой код, терпит неудачу так, как я не понимаю. Может ли кто-нибудь предоставить рабочий фрагмент кода или хорошую идею, где этот код работает неправильно?
[Этот ответ] Как установить язык браузера с помощью RemoteWebDriver и [этот ответ] Как установить язык браузера в возможностях удаленного веб-драйвера selenium оба были опробованы в следующем коде:
DesiredCapabilities DesCaps = new DesiredCapabilities();
DesCaps.SetCapability("browserstack.user", "your_user");
DesCaps.SetCapability("browserstack.key", "your_key");
FirefoxProfile fp = new FirefoxProfile();
fp.SetPreference("intl.accept_languages", "en-US");
DesCaps.SetCapability(FirefoxDriver.ProfileCapabilityName, fp);
ChromeOptions options = new ChromeOptions();
options.AddArguments("--lang=en-DE");
DesCaps.SetCapability(ChromeOptions.Capability, options);
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://hub-cloud.browserstack.com/wd/hub/"), DesCaps, TimeSpan.FromSeconds(500));
driver.Navigate().GoToUrl("http://google.com");
Console.WriteLine("Completed!");
Console.ReadKey();
При попытке запустить драйвер я получаю исключение:
OpenQA.Selenium.WebDriverException
HResult=0x80131500
Message=The property '#/' contains additional properties ["BinaryLocation", "LeaveBrowserRunning", "Arguments", "Extensions", "DebuggerAddress", "MinidumpPath", "PerformanceLoggingPreferences", "UseSpecCompliantProtocol", "BrowserName", "BrowserVersion", "PlatformName", "AcceptInsecureCertificates", "UnhandledPromptBehavior", "PageLoadStrategy", "Proxy"] outside of the schema when none are allowed in chromeOptions
Source=WebDriver
StackTrace:
at OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Response errorResponse)
at OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters)
at OpenQA.Selenium.Remote.RemoteWebDriver.StartSession(ICapabilities desiredCapabilities)
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(ICommandExecutor commandExecutor, ICapabilities desiredCapabilities)
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(Uri remoteAddress, ICapabilities desiredCapabilities, TimeSpan commandTimeout)