Skip to content

Commit 01a96d9

Browse files
[dotnet] Annotate nullability on firefox and chromium options (#15206)
* [dotnet] Annotate nullability on firefox and chromium options * Annotate some easy wins in the firefox namespace
1 parent b0ee450 commit 01a96d9

File tree

6 files changed

+69
-100
lines changed

6 files changed

+69
-100
lines changed

dotnet/src/webdriver/Chrome/ChromeOptions.cs

+5-9
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
using System;
2222
using System.Globalization;
2323

24+
#nullable enable
25+
2426
namespace OpenQA.Selenium.Chrome
2527
{
2628
/// <summary>
@@ -64,19 +66,13 @@ public ChromeOptions() : base()
6466
/// <summary>
6567
/// Gets the vendor prefix to apply to Chromium-specific capability names.
6668
/// </summary>
67-
protected override string VendorPrefix
68-
{
69-
get { return "goog"; }
70-
}
69+
protected override string VendorPrefix => "goog";
7170

7271
/// <summary>
7372
/// Gets the name of the capability used to store Chromium options in
7473
/// an <see cref="ICapabilities"/> object.
7574
/// </summary>
76-
public override string CapabilityName
77-
{
78-
get { return string.Format(CultureInfo.InvariantCulture, "{0}:{1}", this.VendorPrefix, ChromeOptionsCapabilityName); }
79-
}
75+
public override string CapabilityName => string.Format(CultureInfo.InvariantCulture, "{0}:{1}", this.VendorPrefix, ChromeOptionsCapabilityName);
8076

8177
/// <summary>
8278
/// Provides a means to add additional capabilities not yet added as type safe options
@@ -92,7 +88,7 @@ public override string CapabilityName
9288
/// where <paramref name="optionName"/> has already been added will overwrite the
9389
/// existing value with the new value in <paramref name="optionValue"/>.
9490
/// Calling this method adds capabilities to the Chrome-specific options object passed to
95-
/// webdriver executable (property name 'goog:chromeOptions').</remarks>
91+
/// WebDriver executable (property name 'goog:chromeOptions').</remarks>
9692
public void AddAdditionalChromeOption(string optionName, object optionValue)
9793
{
9894
this.AddAdditionalChromiumOption(optionName, optionValue);

dotnet/src/webdriver/Edge/EdgeOptions.cs

+7-11
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
using System;
2222
using System.Globalization;
2323

24+
#nullable enable
25+
2426
namespace OpenQA.Selenium.Edge
2527
{
2628
/// <summary>
@@ -60,27 +62,21 @@ public EdgeOptions() : base()
6062
/// <summary>
6163
/// Gets the vendor prefix to apply to Chromium-specific capability names.
6264
/// </summary>
63-
protected override string VendorPrefix
64-
{
65-
get { return "ms"; }
66-
}
65+
protected override string VendorPrefix => "ms";
6766

6867
/// <summary>
6968
/// Gets the name of the capability used to store Chromium options in
7069
/// an <see cref="ICapabilities"/> object.
7170
/// </summary>
72-
public override string CapabilityName
73-
{
74-
get { return string.Format(CultureInfo.InvariantCulture, "{0}:{1}", this.VendorPrefix, EdgeOptionsCapabilityName); }
75-
}
71+
public override string CapabilityName => string.Format(CultureInfo.InvariantCulture, "{0}:{1}", this.VendorPrefix, EdgeOptionsCapabilityName);
7672

7773
/// <summary>
7874
/// Gets or sets whether to create a WebView session used for launching an Edge (Chromium) WebView-based app on desktop.
7975
/// </summary>
8076
public bool UseWebView
8177
{
82-
get { return this.BrowserName == WebViewBrowserNameValue; }
83-
set { this.BrowserName = value ? WebViewBrowserNameValue : DefaultBrowserNameValue; }
78+
get => this.BrowserName == WebViewBrowserNameValue;
79+
set => this.BrowserName = value ? WebViewBrowserNameValue : DefaultBrowserNameValue;
8480
}
8581

8682
/// <summary>
@@ -97,7 +93,7 @@ public bool UseWebView
9793
/// where <paramref name="optionName"/> has already been added will overwrite the
9894
/// existing value with the new value in <paramref name="optionValue"/>.
9995
/// Calling this method adds capabilities to the Edge-specific options object passed to
100-
/// webdriver executable (property name 'ms:edgeOptions').</remarks>
96+
/// WebDriver executable (property name 'ms:edgeOptions').</remarks>
10197
public void AddAdditionalEdgeOption(string optionName, object optionValue)
10298
{
10399
this.AddAdditionalChromiumOption(optionName, optionValue);

dotnet/src/webdriver/Firefox/FirefoxAndroidOptions.cs

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,20 @@
1818
// </copyright>
1919

2020
using OpenQA.Selenium.Internal;
21+
using System;
2122
using System.Collections.Generic;
2223
using System.Collections.ObjectModel;
2324

25+
#nullable enable
26+
2427
namespace OpenQA.Selenium.Firefox
2528
{
2629
/// <summary>
2730
/// Generates the capabilities for automating Firefox applications on Android
2831
/// </summary>
2932
public class FirefoxAndroidOptions : AndroidOptions
3033
{
31-
private List<string> androidIntentArguments = new List<string>();
34+
private readonly List<string> androidIntentArguments = new List<string>();
3235

3336
/// <summary>
3437
/// Initializes a new instance of the <see cref="FirefoxAndroidOptions"/> class.
@@ -41,10 +44,7 @@ public FirefoxAndroidOptions(string androidPackage) : base(androidPackage)
4144
/// <summary>
4245
/// Gets a read-only list of the intent arguments set for this set of options.
4346
/// </summary>
44-
public ReadOnlyCollection<string> AndroidIntentArguments
45-
{
46-
get { return this.androidIntentArguments.AsReadOnly(); }
47-
}
47+
public ReadOnlyCollection<string> AndroidIntentArguments => this.androidIntentArguments.AsReadOnly();
4848

4949
/// <summary>
5050
/// Argument to launch the intent with. The given intent arguments are appended to the "am start" command.
@@ -59,6 +59,7 @@ public void AddIntentArgument(string argument)
5959
/// Arguments to launch the intent with. The given intent arguments are appended to the "am start" command.
6060
/// </summary>
6161
/// <param name="arguments">The arguments to add.</param>
62+
/// <exception cref="ArgumentNullException">If <paramref name="arguments"/> is <see langword="null"/>.</exception>
6263
public void AddIntentArguments(params string[] arguments)
6364
{
6465
this.androidIntentArguments.AddRange(arguments);

dotnet/src/webdriver/Firefox/FirefoxCommandContext.cs

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
// under the License.
1818
// </copyright>
1919

20+
#nullable enable
21+
2022
namespace OpenQA.Selenium.Firefox
2123
{
2224
/// <summary>

dotnet/src/webdriver/Firefox/FirefoxDriverLogLevel.cs

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
// under the License.
1818
// </copyright>
1919

20+
#nullable enable
21+
2022
namespace OpenQA.Selenium.Firefox
2123
{
2224
/// <summary>

0 commit comments

Comments
 (0)