Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mxschmitt/try-playwright
Try Playwright lets you execute and share Playwright scripts in your browser to get started with Playwright.
https://github.com/mxschmitt/try-playwright
express golang hacktoberfest playground playwright react testing
Last synced: 7 days ago
JSON representation
Try Playwright lets you execute and share Playwright scripts in your browser to get started with Playwright.
- Host: GitHub
- URL: https://github.com/mxschmitt/try-playwright
- Owner: mxschmitt
- License: mit
- Created: 2020-02-29T13:20:24.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-18T09:27:19.000Z (3 months ago)
- Last Synced: 2025-01-08T07:04:09.967Z (14 days ago)
- Topics: express, golang, hacktoberfest, playground, playwright, react, testing
- Language: TypeScript
- Homepage: https://try.playwright.tech
- Size: 5.07 MB
- Stars: 216
- Watchers: 8
- Forks: 25
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Try Playwright
![CI](https://github.com/mxschmitt/try-playwright/workflows/CI/badge.svg)
![Playwright version](https://img.shields.io/badge/Playwright-1.47.0-blue.svg)> Interactive playground for [Playwright](https://github.com/microsoft/playwright) to run examples directly from your browser
## Setting up a Try Playwright environment with [k3s](https://k3s.io)
```sh
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](./CONTRIBUTING.md).