github playwright-community/playwright-go v0.3500.0

latest releases: v0.4701.0, v0.4700.0, v0.4501.1...
15 months ago

This version is on pair driver-wise with the Playwright 1.35 version.

The release would not have been possible without @canstand, thanks a ton to him! 💯

Breaking change:

Locators now return no error anymore.

// before
l, err := page.Locator("body")
assertNil(t, err)
d, err := l.Locator("div")
assertNil(t, err)
// ...

// after
_, err := page.Locator("body").Locator("div").And("p").TextContent()
assertNil(t, err)

Don't miss a new playwright-go release

NewReleases is sending notifications on new releases.