Skip to content

Commit f3208bf

Browse files
committed
Changing .NET ChromeOptions to use goog:chromeOptions as property name
This aligns with current chromedriver.exe expectations as well as with the W3C WebDriver Specification. It also means that the .NET bindings will now require 2.31 or later of chromedriver.exe.
1 parent b5999f6 commit f3208bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/Chrome/ChromeOptions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="ChromeOptions.cs" company="WebDriver Committers">
1+
// <copyright file="ChromeOptions.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -56,7 +56,7 @@ public class ChromeOptions : DriverOptions
5656
/// Gets the name of the capability used to store Chrome options in
5757
/// a <see cref="DesiredCapabilities"/> object.
5858
/// </summary>
59-
public static readonly string Capability = "chromeOptions";
59+
public static readonly string Capability = "goog:chromeOptions";
6060

6161
private const string ArgumentsChromeOption = "args";
6262
private const string BinaryChromeOption = "binary";

0 commit comments

Comments
 (0)