Skip to content

Commit 654a4dc

Browse files
authored
feat(roll): roll Playwright to 1.13.0-1626733671000 (#521)
1 parent 5eecbb5 commit 654a4dc

File tree

13 files changed

+482
-260
lines changed

13 files changed

+482
-260
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ on:
44
jobs:
55
build:
66
timeout-minutes: 30
7-
strategy:
8-
fail-fast: false
97
runs-on: ubuntu-latest
108
steps:
119
- uses: actions/checkout@v2
12-
- uses: microsoft/playwright-github-action@v1
10+
- uses: microsoft/playwright-github-action@v1.5.0
1311
- name: Set up JDK 1.8
1412
uses: actions/setup-java@v1
1513
with:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: actions/checkout@v2
22-
- uses: microsoft/playwright-github-action@v1
22+
- uses: microsoft/playwright-github-action@v1.5.0
2323
- name: Set up JDK 1.8
2424
uses: actions/setup-java@v1
2525
with:
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ${{ matrix.os }}
6565
steps:
6666
- uses: actions/checkout@v2
67-
- uses: microsoft/playwright-github-action@v1
67+
- uses: microsoft/playwright-github-action@v1.5.0
6868
- name: Install Media Pack
6969
if: matrix.os == 'windows-latest'
7070
shell: powershell

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Playwright is a Java library to automate [Chromium](https://www.chromium.org/Hom
1111

1212
| | Linux | macOS | Windows |
1313
| :--- | :---: | :---: | :---: |
14-
| Chromium <!-- GEN:chromium-version -->93.0.4530.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
14+
| Chromium <!-- GEN:chromium-version -->93.0.4543.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1515
| WebKit <!-- GEN:webkit-version -->14.2<!-- GEN:stop --> | ✅ | ✅ | ✅ |
1616
| Firefox <!-- GEN:firefox-version -->89.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1717

playwright/src/main/java/com/microsoft/playwright/Browser.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,9 @@ default Page newPage() {
673673
*/
674674
Page newPage(NewPageOptions options);
675675
/**
676-
* <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
676+
* <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
677+
* which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
678+
* could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
677679
*
678680
* <p> You can use {@link Browser#startTracing Browser.startTracing()} and {@link Browser#stopTracing Browser.stopTracing()} to
679681
* create a trace file that can be opened in Chrome DevTools performance panel.
@@ -690,7 +692,9 @@ default void startTracing(Page page) {
690692
startTracing(page, null);
691693
}
692694
/**
693-
* <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
695+
* <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
696+
* which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
697+
* could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
694698
*
695699
* <p> You can use {@link Browser#startTracing Browser.startTracing()} and {@link Browser#stopTracing Browser.stopTracing()} to
696700
* create a trace file that can be opened in Chrome DevTools performance panel.
@@ -705,7 +709,9 @@ default void startTracing() {
705709
startTracing(null);
706710
}
707711
/**
708-
* <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
712+
* <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
713+
* which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
714+
* could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
709715
*
710716
* <p> You can use {@link Browser#startTracing Browser.startTracing()} and {@link Browser#stopTracing Browser.stopTracing()} to
711717
* create a trace file that can be opened in Chrome DevTools performance panel.
@@ -720,7 +726,9 @@ default void startTracing() {
720726
*/
721727
void startTracing(Page page, StartTracingOptions options);
722728
/**
723-
* <strong>NOTE:</strong> Tracing is only supported on Chromium-based browsers.
729+
* <strong>NOTE:</strong> This API controls <a href="https://www.chromium.org/developers/how-tos/trace-event-profiling-tool">Chromium Tracing</a>
730+
* which is a low-level chromium-specific debugging tool. API to control <a href="../trace-viewer">Playwright Tracing</a>
731+
* could be found <a href="https://playwright.dev/java/docs/class-tracing">here</a>.
724732
*
725733
* <p> Returns the buffer with trace data.
726734
*/

playwright/src/main/java/com/microsoft/playwright/Download.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
/**
2424
* {@code Download} objects are dispatched by page via the {@link Page#onDownload Page.onDownload()} event.
2525
*
26-
* <p> If {@code downloadsPath} isn't specified, all the downloaded files belonging to the browser context are deleted when the
27-
* browser context is closed. And all downloaded files are deleted when the browser closes.
26+
* <p> All the downloaded files belonging to the browser context are deleted when the browser context is closed.
2827
*
2928
* <p> Download event is emitted once the download starts. Download path becomes available once download completes:
3029
* <pre>{@code

0 commit comments

Comments
 (0)