playwright-community/playwright-go

Incorrect url pattern for non-release driver versions

denis-komarov opened this issue · 0 comments

It seems that the pattern in this code is composed incorrectly:

	if !d.isReleaseVersion() {
		pattern = "%s/next/builds/driver/playwright-%s-%s.zip"
	}

The correct one looks like this:

"%s/builds/driver/next/playwright-%s-%s.zip"