Skip to content

Commit 5e1e963

Browse files
committed
Removing obsolete use of IE vendor implementation in .NET bindings
1 parent 67099e9 commit 5e1e963

File tree

3 files changed

+0
-62
lines changed

3 files changed

+0
-62
lines changed

dotnet/src/webdriver/IE/InternetExplorerDriverEngine.cs

Lines changed: 0 additions & 45 deletions
This file was deleted.

dotnet/src/webdriver/IE/InternetExplorerDriverService.cs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public sealed class InternetExplorerDriverService : DriverService
3232
private static readonly Uri InternetExplorerDriverDownloadUrl = new Uri("http://selenium-release.storage.googleapis.com/index.html");
3333

3434
private InternetExplorerDriverLogLevel loggingLevel = InternetExplorerDriverLogLevel.Fatal;
35-
private InternetExplorerDriverEngine engineImplementation = InternetExplorerDriverEngine.Legacy;
3635
private string host = string.Empty;
3736
private string logFile = string.Empty;
3837
private string libraryExtractionPath = string.Empty;
@@ -76,16 +75,6 @@ public InternetExplorerDriverLogLevel LoggingLevel
7675
set { this.loggingLevel = value; }
7776
}
7877

79-
/// <summary>
80-
/// Gets or sets the implementation to be used by the IEDriverServer.
81-
/// </summary>
82-
[Obsolete("Vendor implementation is no longer valid, making this property unnecessary. This property will be removed in a future release.")]
83-
public InternetExplorerDriverEngine Implementation
84-
{
85-
get { return this.engineImplementation; }
86-
set { this.engineImplementation = value; }
87-
}
88-
8978
/// <summary>
9079
/// Gets or sets the path to which the supporting library of the IEDriverServer.exe is extracted.
9180
/// Defaults to the temp directory if this property is not set.
@@ -140,11 +129,6 @@ protected override string CommandLineArguments
140129
argsBuilder.Append(string.Format(CultureInfo.InvariantCulture, " -log-level={0}", this.loggingLevel.ToString().ToUpperInvariant()));
141130
}
142131

143-
if (this.engineImplementation != InternetExplorerDriverEngine.Legacy)
144-
{
145-
argsBuilder.Append(string.Format(CultureInfo.InvariantCulture, " -implementation={0}", this.engineImplementation.ToString().ToUpperInvariant()));
146-
}
147-
148132
if (!string.IsNullOrEmpty(this.whitelistedIpAddresses))
149133
{
150134
argsBuilder.Append(string.Format(CultureInfo.InvariantCulture, " -whitelisted-ips={0}", this.whitelistedIpAddresses));

dotnet/src/webdriver/WebDriver.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@
9696
<Compile Include="Html5\IWebStorage.cs" />
9797
<Compile Include="Html5\Location.cs" />
9898
<Compile Include="IAllowsFileDetection.cs" />
99-
<Compile Include="IE\InternetExplorerDriverEngine.cs" />
10099
<Compile Include="IFileDetector.cs" />
101100
<Compile Include="Html5\IHasLocationContext.cs" />
102101
<Compile Include="ILogs.cs" />

0 commit comments

Comments
 (0)