> For the complete documentation index, see [llms.txt](https://cloudbrowser.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cloudbrowser.gitbook.io/docs/troubleshooting/known-errors.md).

# Known errors

### Error `TimeoutError: Navigation timeout of 30000 ms exceeded` <a href="#id-0-toc-title" id="id-0-toc-title"></a>

In Puppeteer, the error TimeoutError: Navigation timeout of 30000 ms exceeded occurs when a navigation operation to a URL exceeds the default timeout of 30,000 milliseconds (30 seconds). This error can arise due to a variety of reasons, such as network slowness, pages taking a long time to load, blocked resources, or insufficient Puppeteer settings.

#### Resolving the Error <a href="#id-1-toc-title" id="id-1-toc-title"></a>

You can increase the navigation timeout by using the timeout parameter in the page.goto function or by adjusting the global timeout settings:

**Increase Timeout in page.goto.**

```javascript
await page.goto('https://example.com', { timeout: 60000 });
```

**Adjust Global Timeout**

```javascript
const page = await browser.newPage();
page.setDefaultNavigationTimeout(60000);
await page.goto('https://example.com');
```
