Skip to content

Releases: cloudflare/puppeteer

Fix missing api host

10 Jun 14:42
808f08a
Compare
Choose a tag to compare

Fix activeSessions type

27 May 17:34
e8d635d
Compare
Choose a tag to compare
Merge pull request #49 from cloudflare/fix-ci-2

chore: fix lint

Allow connection to any browser provider

16 May 08:59
ee9a23b
Compare
Choose a tag to compare

Updates the connect method to allow to connect to any browser provider.

Add keep alive option

03 May 10:14
433a4e7
Compare
Choose a tag to compare

The default idle time of a browser session is 1 minute, which means that after 1 minute of inactivity (no devtools commands), the browser will be automatically shutdown. With this option, users can now increase it up to 10 minutes.

Add ability to list sessions and connect to an existing sessions

14 Mar 17:12
7c55764
Compare
Choose a tag to compare

Adds new methods:

  • puppeteer.sessions(): lists current open sessions/browsers. Sessions with a connectionId already have a devtools connection from a worker
  • puppeteer.connect(endpoint, sessionId): connects to an open session/browser
  • puppeteer.history(): lists recent sessions, open and closed, useful to get a sense of what's happening
  • puppeteer.limits(): return current limits (eg. can the user open a new browser now?)

Fixes page.screenshot()

07 Aug 09:56
35c5445
Compare
Choose a tag to compare

This release fixes page.screenshot()

Adds back support to page.pdf()

18 Jul 17:01
2e02963
Compare
Choose a tag to compare
Merge pull request #15 from cloudflare/pdf-support

Adds back support to page.pdf()