Skip to content

Commit c15cdbc

Browse files
jakedurandjimevans
authored andcommitted
Replace Chrome with Firefox in .NET documentation comments
Signed-off-by: Jim Evans <[email protected]>
1 parent c6686b3 commit c15cdbc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriverService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public static FirefoxDriverService CreateDefaultService(string driverPath, strin
210210
/// <summary>
211211
/// Returns the Firefox driver filename for the currently running platform
212212
/// </summary>
213-
/// <returns>The file name of the Chrome driver service executable.</returns>
213+
/// <returns>The file name of the Firefox driver service executable.</returns>
214214
private static string FirefoxDriverServiceFileName()
215215
{
216216
string fileName = DefaultFirefoxDriverServiceFileName;

dotnet/src/webdriver/Firefox/FirefoxOptions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public void SetPreference(string preferenceName, string preferenceValue)
240240

241241
/// <summary>
242242
/// Provides a means to add additional capabilities not yet added as type safe options
243-
/// for the Chrome driver.
243+
/// for the Firefox driver.
244244
/// </summary>
245245
/// <param name="capabilityName">The name of the capability to add.</param>
246246
/// <param name="capabilityValue">The value of the capability to add.</param>
@@ -255,8 +255,8 @@ public void SetPreference(string preferenceName, string preferenceValue)
255255
/// geckodriver.exe.</remarks>
256256
public override void AddAdditionalCapability(string capabilityName, object capabilityValue)
257257
{
258-
// Add the capability to the chromeOptions object by default. This is to handle
259-
// the 80% case where the chromedriver team adds a new option in chromedriver.exe
258+
// Add the capability to the FirefoxOptions object by default. This is to handle
259+
// the 80% case where the geckodriver team adds a new option in geckodriver.exe
260260
// and the bindings have not yet had a type safe option added.
261261
this.AddAdditionalCapability(capabilityName, capabilityValue, false);
262262
}

0 commit comments

Comments
 (0)