File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -164,15 +164,15 @@ public override IFileDetector FileDetector
164164 /// <summary>
165165 /// Gets the capabilities as a dictionary supporting legacy drivers.
166166 /// </summary>
167- /// <param name="capabilities ">The dictionary to return.</param>
167+ /// <param name="legacyCapabilities ">The dictionary to return.</param>
168168 /// <returns>A Dictionary consisting of the capabilities requested.</returns>
169169 /// <remarks>This method is only transitional. Do not rely on it. It will be removed
170170 /// once browser driver capability formats stabilize.</remarks>
171- protected override Dictionary < string , object > GetLegacyCapabilitiesDictionary ( ICapabilities capabilities )
171+ protected override Dictionary < string , object > GetLegacyCapabilitiesDictionary ( ICapabilities legacyCapabilities )
172172 {
173173 // Flatten the dictionary, if required to support old versions of the IE driver.
174174 Dictionary < string , object > capabilitiesDictionary = new Dictionary < string , object > ( ) ;
175- DesiredCapabilities capabilitiesObject = capabilities as DesiredCapabilities ;
175+ DesiredCapabilities capabilitiesObject = legacyCapabilities as DesiredCapabilities ;
176176 foreach ( KeyValuePair < string , object > entry in capabilitiesObject . CapabilitiesDictionary )
177177 {
178178 if ( entry . Key == InternetExplorerOptions . Capability )
You can’t perform that action at this time.
0 commit comments