Skip to content

Commit

Permalink
chore: roll 1.47.0 (#1670)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Sep 9, 2024
1 parent f3476c6 commit 36350f3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 30 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Playwright is a Java library to automate [Chromium](https://www.chromium.org/Hom

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
| Chromium <!-- GEN:chromium-version -->128.0.6613.36<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Chromium <!-- GEN:chromium-version -->129.0.6668.29<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| WebKit <!-- GEN:webkit-version -->18.0<!-- GEN:stop --> ||||
| Firefox <!-- GEN:firefox-version -->129.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Firefox <!-- GEN:firefox-version -->130.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |

Headless execution is supported for all the browsers on all platforms. Check out [system requirements](https://playwright.dev/java/docs/intro#system-requirements) for details.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public interface APIResponse {
*/
Map<String, String> headers();
/**
* An array with all the request HTTP headers associated with this response. Header names are not lower-cased. Headers with
* multiple entries, such as {@code Set-Cookie}, appear in the array multiple times.
* An array with all the response HTTP headers associated with this response. Header names are not lower-cased. Headers
* with multiple entries, such as {@code Set-Cookie}, appear in the array multiple times.
*
* @since v1.16
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -541,12 +541,6 @@ public WaitForPageOptions setTimeout(double timeout) {
* BrowserContext.addInitScript()} and {@link com.microsoft.playwright.Page#addInitScript Page.addInitScript()} is not
* defined.
*
* <p> <strong>Bundling</strong>
*
* <p> If you have a complex script split into several files, it needs to be bundled into a single file first. We recommend
* running <a href="https://esbuild.github.io/">{@code esbuild}</a> or <a href="https://webpack.js.org/">{@code
* webpack}</a> to produce a commonjs module and pass {@code path} and {@code arg}.
*
* @param script Script to be evaluated in all pages in the browser context.
* @since v1.8
*/
Expand Down Expand Up @@ -574,12 +568,6 @@ public WaitForPageOptions setTimeout(double timeout) {
* BrowserContext.addInitScript()} and {@link com.microsoft.playwright.Page#addInitScript Page.addInitScript()} is not
* defined.
*
* <p> <strong>Bundling</strong>
*
* <p> If you have a complex script split into several files, it needs to be bundled into a single file first. We recommend
* running <a href="https://esbuild.github.io/">{@code esbuild}</a> or <a href="https://webpack.js.org/">{@code
* webpack}</a> to produce a commonjs module and pass {@code path} and {@code arg}.
*
* @param script Script to be evaluated in all pages in the browser context.
* @since v1.8
*/
Expand Down
14 changes: 1 addition & 13 deletions playwright/src/main/java/com/microsoft/playwright/Page.java
Original file line number Diff line number Diff line change
Expand Up @@ -3767,12 +3767,6 @@ public WaitForWorkerOptions setTimeout(double timeout) {
* BrowserContext.addInitScript()} and {@link com.microsoft.playwright.Page#addInitScript Page.addInitScript()} is not
* defined.
*
* <p> <strong>Bundling</strong>
*
* <p> If you have a complex script split into several files, it needs to be bundled into a single file first. We recommend
* running <a href="https://esbuild.github.io/">{@code esbuild}</a> or <a href="https://webpack.js.org/">{@code
* webpack}</a> to produce a commonjs module and pass {@code path} and {@code arg}.
*
* @param script Script to be evaluated in all pages in the browser context.
* @since v1.8
*/
Expand Down Expand Up @@ -3800,12 +3794,6 @@ public WaitForWorkerOptions setTimeout(double timeout) {
* BrowserContext.addInitScript()} and {@link com.microsoft.playwright.Page#addInitScript Page.addInitScript()} is not
* defined.
*
* <p> <strong>Bundling</strong>
*
* <p> If you have a complex script split into several files, it needs to be bundled into a single file first. We recommend
* running <a href="https://esbuild.github.io/">{@code esbuild}</a> or <a href="https://webpack.js.org/">{@code
* webpack}</a> to produce a commonjs module and pass {@code path} and {@code arg}.
*
* @param script Script to be evaluated in all pages in the browser context.
* @since v1.8
*/
Expand Down Expand Up @@ -4803,7 +4791,7 @@ default void focus(String selector) {
* }</pre>
*
* @param selector A selector to use when resolving DOM element.
* @since v1.17↵regular [`Locator`] instead.
* @since v1.17
*/
FrameLocator frameLocator(String selector);
/**
Expand Down
2 changes: 1 addition & 1 deletion scripts/DRIVER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.47.0-alpha-2024-08-28
1.47.0

0 comments on commit 36350f3

Please sign in to comment.