puppeteer-sharp icon indicating copy to clipboard operation
puppeteer-sharp copied to clipboard

Headless Chrome .NET API

Results 323 puppeteer-sharp issues
Sort by recently updated
recently updated
newest added

[Original issue](https://www.github.com/puppeteer/puppeteer/issues/11815)

[Original issue](https://www.github.com/puppeteer/puppeteer/issues/11834)

[see](https://github.com/puppeteer/puppeteer/pull/11779)

[see](https://github.com/puppeteer/puppeteer/pull/11112)

[see](https://github.com/puppeteer/puppeteer/pull/8260) and [this](https://github.com/puppeteer/puppeteer/pull/9364)

[See upstream](https://github.com/puppeteer/puppeteer/pull/6454)

using var browserFetcher = new BrowserFetcher(); await browserFetcher.DownloadAsync(); var browser = await Puppeteer.LaunchAsync(new LaunchOptions { Headless = true }); var page = await browser.NewPageAsync(); await page.GoToAsync("http://www.google.com"); await page.ScreenshotAsync(outputFile); I attempted...

I convert the value I write in HTML to a base64 PDF in the following method. While there is no issue with spacing among characters locally, there seems to be...

The resolution of the viewport stays the same (F# code) ``` // set the viewport let viewportOptions = ViewPortOptions(Width = 1920, Height = 1080, IsLandscape = true) info $"before viewport...