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 27d2d01 commit 775dd72Copy full SHA for 775dd72
dotnet/test/common/Environment/RemoteSeleniumServer.cs
@@ -88,8 +88,8 @@ public async Task StopAsync()
88
{
89
using (var httpClient = new HttpClient())
90
91
- var shutDownTask = httpClient.GetAsync("http://localhost:6000/selenium-server/driver?cmd=shutDownSeleniumServer");
92
- await ((Task)shutDownTask).ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing);
+ await ((Task)httpClient.GetAsync("http://localhost:6000/selenium-server/driver?cmd=shutDownSeleniumServer"))
+ .ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing);
93
}
94
95
webserverProcess.WaitForExit(10000);
0 commit comments