-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (44 loc) · 1.05 KB
/
Copy pathconfig.example.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
{
"login_url": "https://example.com/login",
"target_url": null,
"login_selectors": {
"username_field": "#LoginEmail",
"password_field": "#LoginPassword",
"submit_button": "#LOGIN_button"
},
"stagger_delay_s": 1.5,
"settings": {
"headless": false,
"slow_mo": 0,
"concurrency_limit": 5,
"default_timeout_ms": 5000
},
"proxies": [
{
"id": "proxy_example_01",
"server": "http://1.1.1.1:8080",
"username": "proxyuser",
"password": "proxypassword",
"status": "Working",
"last_checked": "Just now",
"country": "US",
"city": "New York",
"latency_ms": 100
}
],
"instances": [
{
"id": "Profile_Example_01",
"credentials": {
"user": "your_username",
"pass": "your_password"
},
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.9985.238 Safari/537.36",
"proxy_id": "proxy_example_01",
"viewport": {
"width": 1280,
"height": 720
}
}
]
}