Skip to content

Try Playwright lets you execute and share Playwright scripts in your browser to get started with Playwright.

License

Notifications You must be signed in to change notification settings

mxschmitt/try-playwright

Folders and files

NameName
Last commit message
Last commit date

Latest commit

36db494 · Oct 18, 2024
Jan 19, 2024
Oct 18, 2024
Mar 14, 2023
Oct 18, 2024
Sep 12, 2024
Oct 18, 2024
Sep 11, 2024
Oct 18, 2024
Jan 19, 2024
Oct 18, 2024
Oct 18, 2024
Oct 18, 2024
Oct 18, 2024
Oct 22, 2020
May 7, 2022
Jun 13, 2021
Jun 17, 2023
Feb 29, 2020
Oct 18, 2024
Feb 20, 2022
Sep 11, 2024
Sep 11, 2024
Mar 13, 2020
Mar 13, 2023
May 24, 2024
Oct 22, 2021

Repository files navigation

Try Playwright

CI Playwright version

Interactive playground for Playwright to run examples directly from your browser

Setting up a Try Playwright environment with k3s

curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--disable traefik" sh -
apt update
apt install -y git
git clone https://github.com/mxschmitt/try-playwright.git
openssl req -x509 -nodes -days 730 -newkey rsa:2048 -keyout tls.key -out tls.crt -subj "/CN=try.playwright.tech/O=try.playwright.tech"
kubectl create secret tls try-playwright-cf-tls-cert --key=tls.key --cert=tls.crt
cd try-playwright
export MINIO_ROOT_USER="admin"
export MINIO_ROOT_PASSWORD=$(openssl rand -base64 32)
bash k8/generate.sh
kubectl apply -f k8/

For more information about the infrastructure and contributing, see here.