Skip to content

Releases: microsoft/playwright-java

v1.11.0

10 May 23:29
74bf663
Compare
Choose a tag to compare

Highlights

🎥 New video: Playwright: A New Test Automation Framework for the Modern Web (slides)

  • We talked about Playwright
  • Showed engineering work behind the scenes
  • Did live demos with new features ✨
  • Special thanks to applitools for hosting the event and inviting us!

⚙️ Chrome DevTools Protocol support with BrowserType.connectOverCDP().

Browser Versions

  • Chromium 92.0.4498.0
  • Mozilla Firefox 89.0b6
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 90
  • Microsoft Edge 90

New APIs

v1.10.0

24 Mar 23:35
304b462
Compare
Choose a tag to compare

Highlights

Bundled Browser Versions

  • Chromium 90.0.4430.0
  • Mozilla Firefox 87.0b10
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 89
  • Microsoft Edge 89

New APIs

v1.9.1-alpha-0

10 Mar 18:17
1432b62
Compare
Choose a tag to compare

Highlights

  • This release is based on Playwright v1.9.2
  • Text selector and click() fixes.

Browser Versions

  • Chromium 90.0.4421.0
  • Mozilla Firefox 86.0b10
  • WebKit 14.1
Issues Closed (2)

microsoft/playwright#5634 - [REGRESSION]: Test selector changed behavior
microsoft/playwright#5674 - [REGRESSION]: Label is not visible anymore

v1.9.0-alpha-0

06 Mar 00:58
10da11c
Compare
Choose a tag to compare

Highlights

  • Playwright goes semver. We are jumping from 0.180.* to 1.9.0-alapha-0 to become semver compliant. This is a breaking change, but once we drop the Alpha bit, it'll be in stone for years!

  • Documentation site is now all about Java! It has guides, sample snippets, API docs.

  • Playwright Inspector is a new GUI tool to author and debug your tests.

    • Line-by-line debugging of your Playwright scripts, with play, pause and step-through. Set PLAYWRIGHT_JAVA_SRC=<src dir> to let debugger know location of your java sources.
    • Author new scripts by recording user actions.
    • Generate element selectors for your script by hovering over elements.
    • Set the PWDEBUG=1 environment variable to launch the Inspector
  • Pause script execution with page.pause() in headed mode. Pausing the page launches Playwright Inspector for debugging.

  • New has-text pseudo-class for CSS selectors. :has-text("example") matches any element containing "example" somewhere inside, possibly in a child or a descendant element. See more examples.

  • Page dialogs are now auto-dismissed during execution, unless a listener for dialog event is configured. Learn more about this.

Browser Versions

  • Chromium 90.0.4421.0
  • Mozilla Firefox 86.0b10
  • WebKit 14.1

New APIs

v0.181.0

19 Feb 18:39
Compare
Choose a tag to compare

Highlights

  • Includes driver v1.8.1
  • page.reload() and page.isVisible() fixes.

v0.180.0

23 Jan 02:17
b9dbd56
Compare
Choose a tag to compare

Highlights

API changes since the last 0.171.0 version:

  • Deferred interface has been removed, use waitFor* methods instead:
// Before
Deferred<Request> event = page.waitForRequest();
page.click("a");
Request request = event.get();
// After
Request request = page.waitForRequest(() -> page.click("a"));
  • Listener interface is gone, use corresponding on*/off* methods with typed parameter:
// Before
page.addListener(Page.EventType.REQUESTFAILED, event -> {
  Request request = (Request) event.data();
  System.out.println(request.url());
});
// After
page.onRequestFailed(request -> {
  System.out.println(request.url());
});

Browser Versions

  • Chromium 90.0.4392.0
  • Mozilla Firefox 85.0b5
  • WebKit 14.1

New APIs

v0.171.0

22 Dec 23:47
9d61cee
Compare
Choose a tag to compare
fix: correctly encode unicode strings to UTF-8 (#167)

v0.170.3

20 Dec 02:28
d7fee05
Compare
Choose a tag to compare
  • playwright module now includes driver
  • easier creation of browser context emulating a device

v0.170.2

17 Dec 07:56
8c9a2a8
Compare
Choose a tag to compare
devops: update publish.yml to use env var for passphrase (#144)

v0.170.0

16 Dec 06:57
2d179c6
Compare
Choose a tag to compare
feat: update to cli@0.170.0-next.1608058598043 (#134)