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

Headless Chrome .NET API

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

It solves the issue by collecting the lingering tasks, and manually making them throw so that the UnobservedTaskException event doesn't see them anymore.

Customization of fetch patterns including specifying the RequestStage and ResourceType

I expect that calling: ```csharp await page.WaitForNavigationAsync(); ``` would resolve immediately if the page have already collected 'load' lifecycle event before. Also, I expect the following sequence should complete successfully...

We have concerns from security team to automate chrome browser using puppeteer and it's web socket endpoint.Their concern is "When webSocket is enabled at the given port. This WebSocket provides...

Change the action for SA1620 on the [ruleset file](https://github.com/kblok/puppeteer-sharp/blob/master/lib/PuppeteerSharp.ruleset) to Error, and make the solution build

good first issue
hacktoberfest

Change the action for CA1032 on the [ruleset file](https://github.com/kblok/puppeteer-sharp/blob/master/lib/PuppeteerSharp.ruleset) to Error, and make the solution build

good first issue
hacktoberfest

- [ ] A sample of the PageObjectModel design using puppeteersharp - [ ] IWebElement equivalent using puppeteer

idea

I have PuppeteerSharp project and I need to save the cookies, so I use the following code: ``` browser = await Puppeteer.LaunchAsync(new LaunchOptions { Headless = true, UserDataDir = Path.Combine(".",...

`var browser = await Puppeteer.LaunchAsync(new LaunchOptions ...` should be `using (var browser = await Puppeteer.LaunchAsync(new LaunchOptions ...` Browser implements IDisposable, and not disposing it can cause stray chrome.exe processes that...

### Description I'm implementing the following code to use Puppeteer Sharp for generating PDF on an ASP MVC 5 application, on the first request it works fine, but on any...