-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTaskfile.yml
64 lines (49 loc) · 1.08 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3"
#
# global vars: https://taskfile.dev/#/usage?id=variables
#
vars:
VAR1: "some-var"
# global env:
env:
ENV1: testing
################################################################################################
tasks:
run01:
cmds:
- |
poetry run python \
src/try_playwright/run01.py
# geo = shanghai
gen:
cmds:
- |
poetry run python \
-m playwright codegen \
--target python \
--device "iPhone 11" \
--viewport-size "1280, 720" \
--geolocation "31.224361, 121.469170" \
-o 'src/try_playwright/run02.py' \
-b chromium \
https://www.twitter.com
help:
cmds:
- poetry run python -m playwright codegen --help
poetry:
aliases: [ 'p' ]
cmds:
- poetry {{.CLI_ARGS}} # install, update
install:
cmds:
- poetry install
add:
aliases: [ 'a' ]
cmds:
- poetry add {{.CLI_ARGS}}
add:all:
cmds:
- poetry add "typer[all]" playwright
i:
cmds:
- poetry run playwright install