diff --git a/Beam.Puppeteer/PuppetContext.cs b/Beam.Puppeteer/PuppetContext.cs index 3fdffce..b813eb0 100644 --- a/Beam.Puppeteer/PuppetContext.cs +++ b/Beam.Puppeteer/PuppetContext.cs @@ -7,6 +7,10 @@ namespace Beam.Puppeteer { public static Lazy Playwright { get; set; } public static Lazy Browser { get; set; } + //public static Task OpenBrowser() { + + //} + static PuppetContext() { Playwright = new Lazy(() => Microsoft.Playwright.Playwright.CreateAsync().Result); Browser = new Lazy(() => Playwright.Value.Chromium.LaunchAsync().Result);