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 b2a1b11 commit ee541e8Copy full SHA for ee541e8
lib/PuppeteerSharp.Tests/DefaultBrowserContextTests/BrowserTargetEventsTests.cs
@@ -23,6 +23,7 @@ public async Task ShouldWork()
23
24
// .NET has a race here where we get the target created of the default page.
25
// We will wait for the new page before moving on.
26
+ await Task.Delay(500);
27
await browser.PagesAsync();
28
var events = new List<string>();
29
browser.TargetCreated += (_, _) => events.Add("CREATED");
0 commit comments