Current section
Files
Jump to
Current section
Files
playwriter
kill_playwright.ps1
kill_playwright.ps1
Get-Process node -ErrorAction SilentlyContinue | Where-Object {$_.CommandLine -like '*playwright*'} | Stop-Process -Force
Write-Host "Killed any orphaned Playwright processes"