Skip to content

Commit

Permalink
Remove no-longer-used internal capability in .NET ChromiumOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jun 13, 2019
1 parent e55f334 commit e80eae1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions dotnet/src/webdriver/Chromium/ChromiumOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ public abstract class ChromiumOptions : DriverOptions
/// </summary>
private const string DefaultCapability = "goog:chromeOptions";

// TODO: Remove this if block when chromedriver bug 2371 is fixed
// (https://bugs.chromium.org/p/chromedriver/issues/detail?id=2371)
internal static readonly string ForceAlwaysMatchCapabilityName = "se:forceAlwaysMatch";

private const string DefaultBrowserNameValue = "chrome";

private const string ArgumentsChromeOption = "args";
Expand Down Expand Up @@ -91,7 +87,6 @@ public ChromiumOptions(string browserName = DefaultBrowserNameValue, string capa
this.AddKnownCapabilityName(ChromiumOptions.PerformanceLoggingPreferencesChromeOption, "PerformanceLoggingPreferences property");
this.AddKnownCapabilityName(ChromiumOptions.WindowTypesChromeOption, "AddWindowTypes method");
this.AddKnownCapabilityName(ChromiumOptions.UseSpecCompliantProtocolOption, "UseSpecCompliantProtocol property");
this.AddKnownCapabilityName(ChromiumOptions.ForceAlwaysMatchCapabilityName, "");
}

/// <summary>
Expand Down

0 comments on commit e80eae1

Please sign in to comment.