This commit is contained in:
admin
2026-05-20 17:45:09 +09:00
parent 63ac6bc99a
commit da3aef25ce
19 changed files with 17286 additions and 407 deletions

7
_pw_test.py Normal file
View File

@@ -0,0 +1,7 @@
import subprocess, sys
result = subprocess.run(
["python", "-m", "playwright", "--version"],
capture_output=True, text=True
)
print("playwright version:", result.stdout.strip())
print("stderr:", result.stderr.strip()[:200] if result.stderr else "none")