We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922907f commit 9b7c1a2Copy full SHA for 9b7c1a2
markdown/playwright.md
@@ -2,6 +2,7 @@
2
3
* Install from the [Setup](../README.md#setup) section
4
* Usage
5
+ * `pip`
6
```bash
7
# install
8
pip install --upgrade pip
@@ -11,6 +12,19 @@
11
12
# download new browsers (chromedriver, gecko)
13
npx playwright install
14
15
+ * `pipx`
16
+ ```bash
17
+ # install
18
+ pipx install playwright # install/upgrade
19
+ cd ~/.local/pipx/venvs/playwright
20
+
21
+ # inject dependencies manually
22
+ source bin/activate
23
+ playwright install
24
+ deactivate
25
+ ```
26
+ * Both
27
28
# generate code via macro
29
playwright codegen wikipedia.org
30
```
0 commit comments