Skip to content

Commit e383963

Browse files
Hyperlint Automation Fix
1 parent bd9abdb commit e383963

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/docs/browser-rendering/platform/playwright.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ sidebar:
99

1010
import { Render, WranglerConfig, TabItem, Tabs } from "~/components";
1111

12-
[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.
1313

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/).
1515

1616
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):
1717

@@ -195,7 +195,7 @@ Using the above, the browser will stay open for up to 10 minutes, even if inacti
195195

196196
## Session management
197197

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:
199199

200200
### List open sessions
201201

@@ -220,7 +220,7 @@ Notice that the session `478f4d7d-e943-40f6-a414-837d3736a1dc` has an active wor
220220

221221
### List recent sessions
222222

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.
224224

225225
```json
226226
[
@@ -268,7 +268,7 @@ You should also be able to access this information in the dashboard, albeit with
268268

269269
## Playwright API
270270

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).
272272

273273
Note that `@cloudflare/playwright` is in beta. The following capabilities are not yet fully supported, but we’re actively working on them:
274274

0 commit comments

Comments
 (0)