Skip to content

Commit f88124c

Browse files
committed
Refer to firefox add-on ID as unique identifier
1 parent b69bd01 commit f88124c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriver.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public void SetContext(FirefoxCommandContext context)
288288
/// </summary>
289289
/// <param name="addOnDirectoryToInstall">Full path of the directory of the add-on to install.</param>
290290
/// <param name="temporary">Whether the add-on is temporary; required for unsigned add-ons.</param>
291-
/// <returns>The add-on ID.</returns>
291+
/// <returns>The unique identifier of the installed add-on.</returns>
292292
/// <exception cref="ArgumentNullException">If <paramref name="addOnDirectoryToInstall"/> is null or empty.</exception>
293293
/// <exception cref="ArgumentException">If the directory at <paramref name="addOnDirectoryToInstall"/> does not exist.</exception>
294294
public string InstallAddOnFromDirectory(string addOnDirectoryToInstall, bool temporary = false)
@@ -314,7 +314,7 @@ public string InstallAddOnFromDirectory(string addOnDirectoryToInstall, bool tem
314314
/// </summary>
315315
/// <param name="addOnFileToInstall">Full path and file name of the add-on to install.</param>
316316
/// <param name="temporary">Whether the add-on is temporary; required for unsigned add-ons.</param>
317-
/// <returns>The add-on ID.</returns>
317+
/// <returns>The unique identifier of the installed add-on.</returns>
318318
/// <exception cref="ArgumentNullException">
319319
/// <para>If <paramref name="addOnFileToInstall"/> is null or empty.</para>
320320
/// or
@@ -343,7 +343,7 @@ public string InstallAddOnFromFile(string addOnFileToInstall, bool temporary = f
343343
/// </summary>
344344
/// <param name="base64EncodedAddOn">The base64-encoded string representation of the add-on binary.</param>
345345
/// <param name="temporary">Whether the add-on is temporary; required for unsigned add-ons.</param>
346-
/// <returns>The add-on ID.</returns>
346+
/// <returns>The unique identifier of the installed add-on.</returns>
347347
/// <exception cref="ArgumentNullException">If <paramref name="base64EncodedAddOn"/> is null or empty.</exception>
348348
public string InstallAddOn(string base64EncodedAddOn, bool temporary = false)
349349
{

0 commit comments

Comments
 (0)