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 feece00 commit 9fa9e96Copy full SHA for 9fa9e96
dotnet/src/webdriver/DevTools/DevToolsSession.cs
@@ -68,7 +68,7 @@ public DevToolsSession(string endpointAddress)
68
69
this.CommandTimeout = TimeSpan.FromSeconds(30);
70
this.debuggerEndpoint = endpointAddress;
71
- if (endpointAddress.StartsWith("ws:"))
+ if (endpointAddress.StartsWith("ws", StringComparison.InvariantCultureIgnoreCase))
72
{
73
this.websocketAddress = endpointAddress;
74
}
0 commit comments