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 697cdc2 commit a5c4840Copy full SHA for a5c4840
dotnet/src/webdriver/Proxy.cs
@@ -141,7 +141,7 @@ public Proxy(Dictionary<string, object> settings)
141
{
142
foreach (object? address in addressesAsArray)
143
144
- bypassAddresses.Add(address?.ToString() ?? throw new ArgumentException("noProxy list contained null element", nameof(settings)));
+ bypassAddresses.Add(address?.ToString() ?? throw new ArgumentException("Proxy bypass address list \"noProxy\" contained a null element", nameof(settings)));
145
}
146
147
0 commit comments