You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to open any site in Firefox I always get the Exception TimeoutError: Navigation timeout of 30000 ms exceeded.
Although a site is fully loaded.
Puppeteer-sharp v19.0.2 and .NET 8.0
My code:
var browserFetcher = new BrowserFetcher(SupportedBrowser.Firefox);
await browserFetcher.DownloadAsync();
var launchOptions = new LaunchOptions()
{
Browser = SupportedBrowser.Firefox,
Headless = false,
DefaultViewport = null
};
var browser = await Puppeteer.LaunchAsync(launchOptions);
var page = (await browser.PagesAsync())[0];
await page.GoToAsync("https://google.com");
The text was updated successfully, but these errors were encountered:
When trying to open any site in Firefox I always get the Exception TimeoutError: Navigation timeout of 30000 ms exceeded.
Although a site is fully loaded.
Puppeteer-sharp v19.0.2 and .NET 8.0
My code:
The text was updated successfully, but these errors were encountered: