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 c4a38ab commit 0fc6a62Copy full SHA for 0fc6a62
ROLLING.md
@@ -0,0 +1,16 @@
1
+# Rolling Playwright-Python to the latest Playwright driver
2
+
3
+* checkout repo: `git clone https://github.com/microsoft/playwright-python`
4
+* make sure local python is 3.9
5
+ * create virtual environment, if don't have one: `python -m venv env`
6
+* activate venv: `source env/bin/activate`
7
+* install all deps:
8
+ - `python -m pip install --upgrade pip`
9
+ - `pip install -r local-requirements.txt`
10
+ - `pre-commit install`
11
+ - `pip install -e .`
12
+* change driver version in `setup.py`
13
+* download new driver: `python setup.py bdist_wheel`
14
+* generate API: `./scripts/update_api.sh`
15
+* commit changes & send PR
16
+* wait for bots to pass & merge the PR
0 commit comments