Fix/upgrade playwright go v0.6100.0 - #1532
Open
danilodeLuca wants to merge 4 commits into
Open
Conversation
Microsoft retired Playwright driver zip distribution on all CDN endpoints, breaking fresh installs for browser IDP users on playwright-go < v0.6100.0. Co-authored-by: Cursor <cursoragent@cursor.com>
leonidasKap
reviewed
Jul 10, 2026
v0.6000.0 still uses the retired driver CDN; only v0.6100.0+ assembles the driver from npm + nodejs.org. That release requires the mxschmitt module path. Co-authored-by: Cursor <cursoragent@cursor.com>
3 tasks
leonidasKap
approved these changes
Jul 21, 2026
leonidasKap
left a comment
There was a problem hiding this comment.
lgtm - I 'd recommend a local build and smoke test. Thank you
Author
|
@leonidasKap Thanks — did a local build and smoke test on this branch (mxschmitt/playwright-go v0.6100.0): Build
Tests
Playwright smoke (CDN fix) Fresh driver dir (no existing cache):
Looks good on my side. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes: #1531
Problem
Versions of playwright-go before v0.6100.0 download the Playwright driver from playwright.azureedge.net/builds/driver/..., which Microsoft retired on 2026-07-08. That causes 404s on fresh installs — the same issue reported in antigravity-cli#566.
Changes made
Upgraded dependency from github.com/playwright-community/playwright-go v0.4702.0 → github.com/mxschmitt/playwright-go v0.6100.0
v0.6100.0 assembles the driver from npm (playwright-core) + nodejs.org instead of the deprecated CDN (playwright-go#615)
The module path moved from playwright-community to mxschmitt in this release
Updated imports in:
Fixed API break — StorageState() now takes options instead of a plain path string:
Updated README link to the new module location.