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
29 changes: 20 additions & 9 deletions .github/workflows/tests_components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,26 @@ on:
- main
- release-*
pull_request:
paths-ignore:
- 'browser_patches/**'
- 'docs/**'
- 'packages/extension/**'
- 'packages/playwright-core/src/server/bidi/**'
- 'packages/playwright-core/src/tools/**'
- 'tests/bidi/**'
- 'tests/extension/**'
- 'tests/mcp/**'
paths:
- 'packages/playwright/**'
- 'packages/playwright-core/**'
- '!packages/playwright-core/src/server/bidi/**'
- '!packages/playwright-core/src/tools/**'
- 'packages/playwright-test/**'
- 'packages/playwright-ct-core/**'
- 'packages/playwright-ct-react/**'
- 'packages/playwright-ct-react17/**'
- 'packages/playwright-ct-solid/**'
- 'packages/playwright-ct-vue/**'
- 'packages/injected/**'
- 'packages/isomorphic/**'
- 'packages/protocol/**'
- 'packages/utils/**'
- 'tests/components/**'
- 'utils/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/tests_components.yml'
branches:
- main
- release-*
Expand Down
23 changes: 18 additions & 5 deletions .github/workflows/tests_mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,24 @@ on:
- main
- release-*
pull_request:
paths-ignore:
- 'browser_patches/**'
- 'docs/**'
- 'packages/playwright-core/src/server/bidi/**'
- 'tests/bidi/**'
paths:
- 'packages/playwright/**'
- 'packages/playwright-core/**'
- '!packages/playwright-core/src/server/bidi/**'
- '!packages/playwright-core/src/tools/dashboard/**'
- '!packages/playwright-core/src/tools/trace/**'
- 'packages/playwright-test/**'
- 'packages/injected/**'
- 'packages/isomorphic/**'
- 'packages/protocol/**'
- 'packages/utils/**'
- 'tests/config/**'
- 'tests/mcp/**'
- 'utils/**'
- 'package.json'
- 'package-lock.json'
- '.github/actions/**'
- '.github/workflows/tests_mcp.yml'
branches:
- main
- release-*
Expand Down
23 changes: 14 additions & 9 deletions .github/workflows/tests_primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@ on:
- main
- release-*
pull_request:
paths-ignore:
- 'browser_patches/**'
- 'docs/**'
- 'packages/extension/**'
- 'packages/playwright-core/src/server/bidi/**'
- 'packages/playwright-core/src/tools/**'
- 'tests/bidi/**'
- 'tests/extension/**'
- 'tests/mcp/**'
paths:
- 'packages/**'
- '!packages/extension/**'
- '!packages/playwright-core/src/server/bidi/**'
- '!packages/playwright-core/src/tools/**'
- 'tests/**'
- '!tests/bidi/**'
- '!tests/extension/**'
- '!tests/mcp/**'
- 'utils/**'
- 'package.json'
- 'package-lock.json'
- '.github/actions/**'
- '.github/workflows/tests_primary.yml'
branches:
- main
- release-*
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/tests_secondary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ on:
- main
- release-*
pull_request:
paths-ignore:
- 'browser_patches/**'
- 'docs/**'
- 'packages/extension/**'
- 'packages/playwright-core/src/server/bidi/**'
- 'tests/bidi/**'
- 'tests/extension/**'
types: [ labeled ]
branches:
- main
Expand Down
6 changes: 6 additions & 0 deletions docs/src/api/class-locator.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,12 @@ When set to `"ai"`, returns a snapshot optimized for AI consumption. Defaults to

When specified, limits the depth of the snapshot.

### option: Locator.ariaSnapshot.boxes
* since: v1.60
- `boxes` <[boolean]>

When `true`, appends each element's bounding box as `[box=x,y,width,height]` to the snapshot. Defaults to `false`.

## async method: Locator.blur
* since: v1.28

Expand Down
6 changes: 6 additions & 0 deletions docs/src/api/class-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -4253,6 +4253,12 @@ When set to `"ai"`, returns a snapshot optimized for AI consumption: including e

When specified, limits the depth of the snapshot.

### option: Page.ariaSnapshot.boxes
* since: v1.60
- `boxes` <[boolean]>

When `true`, appends each element's bounding box as `[box=x,y,width,height]` to the snapshot. Defaults to `false`.

## async method: Page.tap
* since: v1.8
* discouraged: Use locator-based [`method: Locator.tap`] instead. Read more about [locators](../locators.md).
Expand Down
Loading
Loading