Playwright 설치 시 Chromium 대신 Chrome으로 변경

This commit is contained in:
암냥 2025-07-15 21:45:00 +09:00
commit c36db01dd8

View file

@ -36,7 +36,7 @@ def install_playwright_chrome():
print("\n🛠️ Playwright의 Chromium을 설치 중입니다...") print("\n🛠️ Playwright의 Chromium을 설치 중입니다...")
print("👉 이 작업은 시간이 걸릴 수 있습니다. 잠시 기다려주세요.") print("👉 이 작업은 시간이 걸릴 수 있습니다. 잠시 기다려주세요.")
try: try:
subprocess.run(["uv", "run", "playwright", "install", "chromium"], check=True) subprocess.run(["uv", "run", "playwright", "install", "chrome"], check=True)
print("✅ Playwright Chrome 설치 완료.") print("✅ Playwright Chrome 설치 완료.")
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e:
if "already" in e.stdout.decode(): if "already" in e.stdout.decode():