@@ -109,7 +109,7 @@ public class InternetExplorerOptions : DriverOptions
109
109
private TimeSpan fileUploadDialogTimeout = TimeSpan . MinValue ;
110
110
private string initialBrowserUrl = string . Empty ;
111
111
private string browserCommandLineArguments = string . Empty ;
112
- private string edgeExecutablePathCapability = string . Empty ;
112
+ private string edgeExecutablePath = string . Empty ;
113
113
private InternetExplorerElementScrollBehavior elementScrollBehavior = InternetExplorerElementScrollBehavior . Default ;
114
114
private Dictionary < string , object > additionalInternetExplorerOptions = new Dictionary < string , object > ( ) ;
115
115
@@ -137,7 +137,7 @@ public InternetExplorerOptions() : base()
137
137
this . AddKnownCapabilityName ( EnsureCleanSessionCapability , "EnsureCleanSession property" ) ;
138
138
this . AddKnownCapabilityName ( FileUploadDialogTimeoutCapability , "FileUploadDialogTimeout property" ) ;
139
139
this . AddKnownCapabilityName ( EnableFullPageScreenshotCapability , "EnableFullPageScreenshot property" ) ;
140
- this . AddKnownCapabilityName ( LegacyFileUploadDialogHanldingCapability , "LegacyFileUploadDialogHanlding property" ) ;
140
+ this . AddKnownCapabilityName ( LegacyFileUploadDialogHandlingCapability , "LegacyFileUploadDialogHanlding property" ) ;
141
141
this . AddKnownCapabilityName ( AttachToEdgeChromeCapability , "AttachToEdgeChrome property" ) ;
142
142
this . AddKnownCapabilityName ( EdgeExecutablePathCapability , "EdgeExecutablePath property" ) ;
143
143
}
@@ -485,17 +485,17 @@ private Dictionary<string, object> BuildInternetExplorerOptionsDictionary()
485
485
486
486
if ( this . legacyFileUploadDialogHandling )
487
487
{
488
- internetExplorerOptionsDictionary [ LegacyFileUploadDialogHandling ] = true ;
488
+ internetExplorerOptionsDictionary [ LegacyFileUploadDialogHandlingCapability ] = true ;
489
489
}
490
490
491
491
if ( this . attachToEdgeChrome )
492
492
{
493
- internetExplorerOptionsDictionary [ AttachToEdgeChrome ] = true ;
493
+ internetExplorerOptionsDictionary [ AttachToEdgeChromeCapability ] = true ;
494
494
}
495
495
496
- if ( ! string . IsNullOrEmpty ( this . edgeExecutablePathCapability ) )
496
+ if ( ! string . IsNullOrEmpty ( this . edgeExecutablePath ) )
497
497
{
498
- internetExplorerOptionsDictionary [ EdgeExecutablePathCapability ] = this . edgeExecutablePathCapability ;
498
+ internetExplorerOptionsDictionary [ EdgeExecutablePathCapability ] = this . edgeExecutablePath ;
499
499
}
500
500
501
501
foreach ( KeyValuePair < string , object > pair in this . additionalInternetExplorerOptions )
0 commit comments