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

The PR fixes `BrowserContext.IsClosed`. The property returns true when a context is not closed.

### Description puppeteer provides `@puppeteer/browsers` to help install browsers, could we support similar functions with a dotnet tool, thoughts? ``` # Download the latest available Chrome for Testing binary corresponding...

I trying to get BoundingBoxAsync of element but faced error that frame not found. But this element located in another frame, so I don't understand how to fix this problem,...

## Timeout errors since updating to 18.0.x with Chrome V124/125 ### Description My code runs in a .net 4.8 executable which is launched by a Windows Service running under my...

Hi, Using PuppeteerSharp (12.0.0) with an ASP.NET Core 3.1 web application. It's deployed to my Windows 2022 server running in IIS. I'm not 100% sure, but it seems like, every...

.NET 8 console app, PuppeteerSharp 17.0.0. Loading this webpage https://www.olx.uz/d/obyavlenie/novyy-teplyy-svitshot-ls-vaikiki-ID34mqR.html . Trying to evaluate js, however getting strange exception (js checked in dev console and is correct): Protocol error(Runtime.callFunctionOn): Target...

Hello, I faced issue with frames, if website has frames which nested in another frames puppeeteersharp cant handle it. I use code like ` foreach (IFrame frame in page.Frames){Console.WriteLine("frame "+...

Hi, I am encountering an issue while converting HTML to PDF using PuppeteerSharp. Specifically, the images are not displaying in the generated PDF. Despite following various solutions suggested on StackOverflow,...

this is my code ``` using var browserFetcher = new BrowserFetcher(); var revisionInfo = await browserFetcher.DownloadAsync(); string executablePath = revisionInfo.GetExecutablePath(); // 启动 Chromium,设置为无头模式 var browser = await Puppeteer.LaunchAsync(new LaunchOptions {...