1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/playwright/README.md

26 lines
583 B
Markdown
Raw Normal View History

2021-08-04 05:32:37 +00:00
playwright
==========
```bash
$ mkdir data
$ chown 1000:1000 data
$ docker-compose up -d
$ docker exec --user root playwright npm install -g playwright
$ alias playwright='docker exec playwright npx playwright'
$ docker exec playwright node example.js
$ playwright pdf https://github.com github.pdf
Navigating to https://github.com
Saving as pdf into github.pdf
$ playwright screenshot --full-page https://github.com github.png
Navigating to https://github.com
Capturing screenshot into github.png
$ tree data
├── example.png
├── github.pdf
└── github.png
```