Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/api/params.md
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ Consider the following DOM structure.
<button data-testid="directions">Itinéraire</button>
```

You can locate the element by it's test id:
You can locate the element by its test id:

```js
await page.getByTestId('directions').click();
Expand Down Expand Up @@ -1731,7 +1731,7 @@ Consider the following DOM structure.
<button>Submit</button>
```

You can locate each element by it's implicit role:
You can locate each element by its implicit role:

```js
await expect(page.getByRole('heading', { name: 'Sign up' })).toBeVisible();
Expand Down
609 changes: 324 additions & 285 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@
"packages/*"
],
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/github": "^8.0.0",
"@babel/code-frame": "^7.26.2",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@lowire/loop": "^0.0.25",
"@modelcontextprotocol/sdk": "^1.25.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"@octokit/graphql-schema": "^15.26.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/codemirror": "^5.60.7",
Expand Down
16 changes: 8 additions & 8 deletions packages/playwright-client/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3003,7 +3003,7 @@ export interface Page {
* <button>Submit</button>
* ```
*
* You can locate each element by it's implicit role:
* You can locate each element by its implicit role:
*
* ```js
* await expect(page.getByRole('heading', { name: 'Sign up' })).toBeVisible();
Expand Down Expand Up @@ -3108,7 +3108,7 @@ export interface Page {
* <button data-testid="directions">Itinéraire</button>
* ```
*
* You can locate the element by it's test id:
* You can locate the element by its test id:
*
* ```js
* await page.getByTestId('directions').click();
Expand Down Expand Up @@ -7022,7 +7022,7 @@ export interface Frame {
* <button>Submit</button>
* ```
*
* You can locate each element by it's implicit role:
* You can locate each element by its implicit role:
*
* ```js
* await expect(page.getByRole('heading', { name: 'Sign up' })).toBeVisible();
Expand Down Expand Up @@ -7127,7 +7127,7 @@ export interface Frame {
* <button data-testid="directions">Itinéraire</button>
* ```
*
* You can locate the element by it's test id:
* You can locate the element by its test id:
*
* ```js
* await page.getByTestId('directions').click();
Expand Down Expand Up @@ -13837,7 +13837,7 @@ export interface Locator {
* <button>Submit</button>
* ```
*
* You can locate each element by it's implicit role:
* You can locate each element by its implicit role:
*
* ```js
* await expect(page.getByRole('heading', { name: 'Sign up' })).toBeVisible();
Expand Down Expand Up @@ -13942,7 +13942,7 @@ export interface Locator {
* <button data-testid="directions">Itinéraire</button>
* ```
*
* You can locate the element by it's test id:
* You can locate the element by its test id:
*
* ```js
* await page.getByTestId('directions').click();
Expand Down Expand Up @@ -20066,7 +20066,7 @@ export interface FrameLocator {
* <button>Submit</button>
* ```
*
* You can locate each element by it's implicit role:
* You can locate each element by its implicit role:
*
* ```js
* await expect(page.getByRole('heading', { name: 'Sign up' })).toBeVisible();
Expand Down Expand Up @@ -20172,7 +20172,7 @@ export interface FrameLocator {
* <button data-testid="directions">Itinéraire</button>
* ```
*
* You can locate the element by it's test id:
* You can locate the element by its test id:
*
* ```js
* await page.getByTestId('directions').click();
Expand Down
Loading
Loading