@@ -32,7 +32,6 @@ public sealed class InternetExplorerDriverService : DriverService
32
32
private static readonly Uri InternetExplorerDriverDownloadUrl = new Uri ( "http://selenium-release.storage.googleapis.com/index.html" ) ;
33
33
34
34
private InternetExplorerDriverLogLevel loggingLevel = InternetExplorerDriverLogLevel . Fatal ;
35
- private InternetExplorerDriverEngine engineImplementation = InternetExplorerDriverEngine . Legacy ;
36
35
private string host = string . Empty ;
37
36
private string logFile = string . Empty ;
38
37
private string libraryExtractionPath = string . Empty ;
@@ -76,16 +75,6 @@ public InternetExplorerDriverLogLevel LoggingLevel
76
75
set { this . loggingLevel = value ; }
77
76
}
78
77
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
-
89
78
/// <summary>
90
79
/// Gets or sets the path to which the supporting library of the IEDriverServer.exe is extracted.
91
80
/// Defaults to the temp directory if this property is not set.
@@ -140,11 +129,6 @@ protected override string CommandLineArguments
140
129
argsBuilder . Append ( string . Format ( CultureInfo . InvariantCulture , " -log-level={0}" , this . loggingLevel . ToString ( ) . ToUpperInvariant ( ) ) ) ;
141
130
}
142
131
143
- if ( this . engineImplementation != InternetExplorerDriverEngine . Legacy )
144
- {
145
- argsBuilder . Append ( string . Format ( CultureInfo . InvariantCulture , " -implementation={0}" , this . engineImplementation . ToString ( ) . ToUpperInvariant ( ) ) ) ;
146
- }
147
-
148
132
if ( ! string . IsNullOrEmpty ( this . whitelistedIpAddresses ) )
149
133
{
150
134
argsBuilder . Append ( string . Format ( CultureInfo . InvariantCulture , " -whitelisted-ips={0}" , this . whitelistedIpAddresses ) ) ;
0 commit comments