Skip to content

Commit 2ed1b07

Browse files
committed
chore: roll to Playwright 1.6.1
1 parent 87c5e1b commit 2ed1b07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build_package.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
from playwright.path_utils import get_file_dirname
2424

25-
driver_version_64 = "0.160.0-next.1605227932803"
26-
driver_version_32 = "0.160.0-next.1605227936643"
25+
driver_version_64 = "0.161.0"
26+
driver_version_32 = "0.161.0"
2727

2828

2929
def driver_version(platform: str) -> str:
@@ -38,7 +38,7 @@ def driver_version(platform: str) -> str:
3838
for platform in ["mac", "linux", "win32", "win32_x64"]:
3939
zip_file = f"playwright-cli-{driver_version(platform)}-{platform}.zip"
4040
if not os.path.exists("driver/" + zip_file):
41-
url = "https://playwright.azureedge.net/builds/cli/next/" + zip_file
41+
url = "https://playwright.azureedge.net/builds/cli/" + zip_file
4242
print("Fetching ", url)
4343
subprocess.check_call(["curl", url, "-o", "driver/" + zip_file])
4444

0 commit comments

Comments
 (0)