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
[Playwright](https://playwright.dev/) is an open-source package developed by Microsoft that can do browser automation tasks; it's commonly used to write frontend tests, create screenshots, or crawl pages.
12
+
[Playwright](https://playwright.dev/) is an open-source package developed by Microsoft that can do browser automation tasks; it is commonly used to write frontend tests, create screenshots, or crawl pages.
13
13
14
-
The Workers team forked a [version of Playwright](https://github.com/cloudflare/playwright) that was modified to be compatible with [Cloudflare Workers](https://developers.cloudflare.com/workers/) and [Browser Rendering](https://developers.cloudflare.com/browser-rendering/).
14
+
The Workers team forked a [version of Playwright](https://github.com/cloudflare/playwright) that was modified to be compatible with [Cloudflare Workers](/workers/) and [Browser Rendering](/browser-rendering/).
15
15
16
16
Our version is open sourced and can be found in [Cloudflare's fork of Playwright](https://github.com/cloudflare/playwright). The npm package can be installed from [npmjs](https://www.npmjs.com/) as [@cloudflare/playwright](https://www.npmjs.com/package/@cloudflare/playwright):
17
17
@@ -195,7 +195,7 @@ Using the above, the browser will stay open for up to 10 minutes, even if inacti
195
195
196
196
## Session management
197
197
198
-
In order to facilitate browser session management, we've extended the Playwright API with new methods:
198
+
In order to facilitate browser session management, we have extended the Playwright API with new methods:
199
199
200
200
### List open sessions
201
201
@@ -220,7 +220,7 @@ Notice that the session `478f4d7d-e943-40f6-a414-837d3736a1dc` has an active wor
220
220
221
221
### List recent sessions
222
222
223
-
`playwright.history()` lists recent sessions, both open and closed. It's useful to get a sense of your current usage.
223
+
`playwright.history()` lists recent sessions, both open and closed. It is useful to get a sense of your current usage.
224
224
225
225
```json
226
226
[
@@ -268,7 +268,7 @@ You should also be able to access this information in the dashboard, albeit with
268
268
269
269
## Playwright API
270
270
271
-
The full Playwright API can be found [here](https://playwright.dev/docs/api/class-playwright).
271
+
The full Playwright API can be found at the [Playwright API documentation](https://playwright.dev/docs/api/class-playwright).
272
272
273
273
Note that `@cloudflare/playwright` is in beta. The following capabilities are not yet fully supported, but we’re actively working on them:
0 commit comments