We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b60c9f commit 3714ad6Copy full SHA for 3714ad6
dotnet/src/webdriver/CookieJar.cs
@@ -79,7 +79,7 @@ public void DeleteCookieNamed(string name)
79
{
80
if (string.IsNullOrWhiteSpace(name))
81
82
- throw new ArgumentException("Cookie name cannot be empty", nameof(name));
+ throw new ArgumentException("Cookie name cannot be null or empty", nameof(name));
83
}
84
85
Dictionary<string, object> parameters = new() { { "name", name } };
@@ -120,7 +120,7 @@ public void DeleteAllCookies()
120
121
122
123
124
125
126
try
0 commit comments