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
| github.com/mitchellh/go-homedir v1.1.0 | ||
| github.com/pkg/errors v0.9.1 | ||
| github.com/playwright-community/playwright-go v0.4702.0 | ||
| github.com/playwright-community/playwright-go v0.6000.0 |
There was a problem hiding this comment.
qq: the PR title mentions v0.6100.0 but this bumps to v0.6000.0
Author
There was a problem hiding this comment.
ohh my apologies,, it was done when trying to push it to use "playwright-community/playwright-go" module, which looks like that was moved to use a different module name
Updated with the new module name.
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>
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.
Issue: #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.