Skip to content

Commit 551c168

Browse files
authored
chore: roll 1.30 driver (#1182)
1 parent 9010fa9 commit 551c168

File tree

10 files changed

+1791
-410
lines changed

10 files changed

+1791
-410
lines changed

README.md

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

1212
| | Linux | macOS | Windows |
1313
| :--- | :---: | :---: | :---: |
14-
| Chromium <!-- GEN:chromium-version -->109.0.5414.46<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
14+
| Chromium <!-- GEN:chromium-version -->110.0.5481.38<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1515
| WebKit <!-- GEN:webkit-version -->16.4<!-- GEN:stop --> ||||
16-
| Firefox <!-- GEN:firefox-version -->107.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
16+
| Firefox <!-- GEN:firefox-version -->108.0.2<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1717

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
* {@code ConsoleMessage} objects are dispatched by page via the {@link Page#onConsoleMessage Page.onConsoleMessage()}
2323
* event. For each console messages logged in the page there will be corresponding event in the Playwright context.
2424
* <pre>{@code
25-
* // Listen for all System.out.printlns
25+
* // Listen for all console messages and print them to the standard output.
2626
* page.onConsoleMessage(msg -> System.out.println(msg.text()));
2727
*
28-
* // Listen for all console events and handle errors
28+
* // Listen for all console messages and print errors to the standard output.
2929
* page.onConsoleMessage(msg -> {
3030
* if ("error".equals(msg.type()))
3131
* System.out.println("Error text: " + msg.text());
3232
* });
3333
*
34-
* // Get the next System.out.println
34+
* // Get the next console message
3535
* ConsoleMessage msg = page.waitForConsoleMessage(() -> {
3636
* // Issue console.log inside the page
3737
* page.evaluate("console.log('hello', 42, { foo: 'bar' });");

0 commit comments

Comments
 (0)