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 c6c05e5 commit cf1cc6fCopy full SHA for cf1cc6f
examples/dotnet/SeleniumDocs/BaseTest.cs
@@ -87,7 +87,7 @@ private static int GetFreeTcpPort()
87
88
private async Task EnsureGridIsRunningAsync()
89
{
90
- DateTime timeout = DateTime.Now.Add(TimeSpan.FromSeconds(30));
+ DateTime timeout = DateTime.Now.Add(TimeSpan.FromSeconds(240));
91
bool isRunning = false;
92
HttpClient client = new HttpClient();
93
@@ -102,12 +102,12 @@ private async Task EnsureGridIsRunningAsync()
102
}
103
else
104
105
- await Task.Delay(500);
+ await Task.Delay(1000);
106
107
108
catch (HttpRequestException)
109
110
111
112
113
0 commit comments