-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-config.json
55 lines (55 loc) · 1.07 KB
/
sample-config.json
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
{
"baseUrl": "http://demo.ribbl.com/install/10979_646bf/",
"format": "png",
"outDir": "output",
"timeout": 10,
"login": {
"url": "login",
"inject": "location.href = $('.login-link:first').attr('href');"
},
"devices": [
{
"id": "desktop",
"width": 1280,
"height": 720,
"ratio": 1
},
{
"id": "nexus5",
"width": 360,
"height": 640,
"ratio": 2
}
],
"shots": [
{
"id": "default-shot",
"url": "startseite",
"device": "desktop"
},
{
"id": "clipped-shot",
"url": "startseite",
"device": "desktop",
"region": {
"left": 100,
"top": 100,
"width": 500,
"height": 20
}
},
{
"id": "dom-element",
"url": "startseite",
"device": "desktop",
"element": ".streamEditorWidget"
},
{
"id": "inject-code",
"url": "startseite",
"device": "desktop",
"inject": "$('.microblogMicroblogStreamEditor textarea').css('backgroundColor', 'red');",
"delay": 1000
}
]
}