Skip to content

Commit

Permalink
chore: generate versioned docs
Browse files Browse the repository at this point in the history
  • Loading branch information
release-please[bot] committed Dec 13, 2022
1 parent 5f8861f commit 56e080a
Show file tree
Hide file tree
Showing 737 changed files with 175 additions and 38 deletions.
2 changes: 1 addition & 1 deletion docs/chromium-support.md
Expand Up @@ -4,7 +4,7 @@ The following versions of Chromium are supported, mapped to Puppeteer version:

<!-- version-start -->

- Chromium 109.0.5412.0 - [Puppeteer v19.4.0](https://pptr.dev/19.4.0)
- Chromium 109.0.5412.0 - [Puppeteer v19.4.0](https://github.com/puppeteer/puppeteer/blob/v19.4.0/docs/api/index.md)
- Chromium 108.0.5351.0 - [Puppeteer v19.2.0](https://github.com/puppeteer/puppeteer/blob/v19.2.0/docs/api/index.md)
- Chromium 107.0.5296.0 - [Puppeteer v18.1.0](https://github.com/puppeteer/puppeteer/blob/v18.1.0/docs/api/index.md)
- Chromium 106.0.5249.0 - [Puppeteer v17.1.0](https://github.com/puppeteer/puppeteer/blob/v17.1.0/docs/api/index.md)
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -35,7 +35,7 @@ sidebar_label: API
| [Puppeteer](./puppeteer.puppeteer.md) | <p>The main Puppeteer class.</p><p>IMPORTANT: if you are using Puppeteer in a Node environment, you will get an instance of [PuppeteerNode](./puppeteer.puppeteernode.md) when you import or require <code>puppeteer</code>. That class extends <code>Puppeteer</code>, so has all the methods documented below as well as all that are defined on [PuppeteerNode](./puppeteer.puppeteernode.md).</p> |
| [PuppeteerNode](./puppeteer.puppeteernode.md) | <p>Extends the main [Puppeteer](./puppeteer.puppeteer.md) class with Node specific behaviour for fetching and downloading browsers.</p><p>If you're using Puppeteer in a Node environment, this is the class you'll get when you run <code>require('puppeteer')</code> (or the equivalent ES <code>import</code>).</p> |
| [SecurityDetails](./puppeteer.securitydetails.md) | The SecurityDetails class represents the security details of a response that was received over a secure connection. |
| [Target](./puppeteer.target.md) | |
| [Target](./puppeteer.target.md) | Target represents a [CDP target](https://chromedevtools.github.io/devtools-protocol/tot/Target/). In CDP a target is something that can be debugged such a frame, a page or a worker. |
| [TimeoutError](./puppeteer.timeouterror.md) | TimeoutError is emitted whenever certain operations are terminated due to timeout. |
| [Touchscreen](./puppeteer.touchscreen.md) | The Touchscreen class exposes touchscreen events. |
| [Tracing](./puppeteer.tracing.md) | The Tracing class exposes the tracing audit interface. |
Expand Down
Expand Up @@ -25,7 +25,7 @@ The constructor for this class is marked as internal. Third-party code should no
An example of using a [Browser](./puppeteer.browser.md) to create a [Page](./puppeteer.page.md):
```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand All @@ -40,7 +40,7 @@ const puppeteer = require('puppeteer');
An example of disconnecting from and reconnecting to a [Browser](./puppeteer.browser.md):
```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand Down
Expand Up @@ -19,7 +19,7 @@ The constructor for this class is marked as internal. Third-party code should no
## Example

```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand Down
Expand Up @@ -19,7 +19,7 @@ export declare class ElementHandle<ElementType extends Node = Element> extends J
ElementHandles can be created with the [Page.$()](./puppeteer.page._.md) method.
```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand Down
Expand Up @@ -39,7 +39,7 @@ Throws if an element matching the given selector doesn't appear.
## Example

```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand Down
Expand Up @@ -19,7 +19,7 @@ sidebar_label: ElementHandle.waitForXPath
> This method works across navigation.
>
> ```ts
> const puppeteer = require('puppeteer');
> import puppeteer from 'puppeteer';
> (async () => {
> const browser = await puppeteer.launch();
> const page = await browser.newPage();
Expand Down
Expand Up @@ -31,7 +31,7 @@ At any point in time, [pages](./puppeteer.page.md) expose their current frame tr
An example of dumping frame tree:

```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand Down
Expand Up @@ -38,7 +38,7 @@ the promise which resolve when the `pageFunction` returns a truthy value.
The `waitForFunction` can be used to observe viewport size change:

```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
. const browser = await puppeteer.launch();
Expand Down
Expand Up @@ -39,7 +39,7 @@ Throws if an element matching the given selector doesn't appear.
## Example

```ts
const puppeteer = require('puppeteer');
import puppeteer from 'puppeteer';

(async () => {
const browser = await puppeteer.launch();
Expand Down

0 comments on commit 56e080a

Please sign in to comment.