# 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');
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cloudbrowser.gitbook.io/docs/troubleshooting/known-errors.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
