Skip to content

Instantly share code, notes, and snippets.

View Hillsie's full-sized avatar
👋

Hillsie Hillsie

👋
  • Sydney, Australia
  • 08:40 (UTC +10:00)
View GitHub Profile
@Hillsie
Hillsie / init_playwright.sh
Created February 20, 2023 21:27
Silent / Unattended installation script - Playwright
#!/usr/bin/expect
set timeout -1
spawn npm init -y playwright@latest
expect "TypeScript" { send "\r" }
expect "tests" { send "\r" }
expect "Add a GitHub Actions workflow" { send "n\r" }
expect "Install Playwright browsers" { send "y\r" }