-
Notifications
You must be signed in to change notification settings - Fork 0
/
backstop.json
159 lines (159 loc) · 4.96 KB
/
backstop.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"viewports": [
{
"label": "phone",
"width": 320,
"height": 320
},
{
"label": "tablet",
"width": 1024,
"height": 1024
}
],
"onBeforeScript": "puppeteer/onBefore.js",
"onReadyScript": "puppeteer/onReady.js",
"scenarios": [
{
"label": "Blog Post",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/blog/Richard-Thai-New-Digital-Archivist",
"selectors": ["document"],
"removeSelectors": ["#s-ui-cc-container"],
"requireSameDimensions": true
},
{
"label": "Subjects",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/sb.php",
"selectors": ["document"],
"removeSelectors": ["#s-ui-cc-container"],
"requireSameDimensions": true
},
{
"label": "Library Footer",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/",
"referenceUrl": "",
"readyEvent": "",
"readySelector": ".s-lc-w-today",
"delay": 0,
"hideSelectors": [".s-lc-w-head span:last-of-type"],
"removeSelectors": ["#s-ui-cc-container", ".s-lc-w-time"],
"hoverSelector": "",
"clickSelector": "",
"postInteractionWait": 0,
"scrollToSelector": "#footer-login",
"selectors": ["#footer-wrapper"],
"selectorExpansion": true,
"expect": 0,
"misMatchThreshold" : 0.1,
"requireSameDimensions": true
},
{
"label": "Archives Footer",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/archives",
"referenceUrl": "",
"readyEvent": "",
"readySelector": ".s-lc-w-today",
"delay": 0,
"hideSelectors": [".s-lc-w-head span:last-of-type"],
"removeSelectors": ["#s-ui-cc-container", ".s-lc-w-time"],
"hoverSelector": "",
"clickSelector": "",
"postInteractionWait": 0,
"scrollToSelector": "#footer-login",
"selectors": ["#footer-wrapper"],
"selectorExpansion": true,
"expect": 0,
"misMatchThreshold" : 0.1,
"requireSameDimensions": true
},
{
"label": "LibAnswers Footer",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://libanswers.caltech.edu/",
"referenceUrl": "",
"readyEvent": "",
"readySelector": ".s-lc-w-today",
"delay": 0,
"hideSelectors": [".s-lc-w-head span:last-of-type"],
"removeSelectors": ["#s-ui-cc-container", ".s-lc-w-time"],
"hoverSelector": "",
"clickSelector": "",
"postInteractionWait": 0,
"scrollToSelector": "#footer-login",
"selectors": ["#footer-wrapper"],
"selectorExpansion": true,
"expect": 0,
"misMatchThreshold" : 0.1,
"requireSameDimensions": true
},
{
"label": "LibCal Home",
"url": "https://libcal.caltech.edu/",
"removeSelectors": ["#s-ui-cc-container"],
"requireSameDimensions": false
},
{
"label": "LibCal Group Study Rooms",
"url": "https://libcal.caltech.edu/booking/gsr",
"removeSelectors": ["#s-ui-cc-container"],
"requireSameDimensions": false
},
{
"label": "LibCal Classes",
"url": "https://libcal.caltech.edu/calendar/classes",
"readySelector": "#s-lc-c-list-cont > div",
"removeSelectors": ["#s-ui-cc-container"],
"requireSameDimensions": false
},
{
"label": "LibCal Event",
"url": "https://libcal.caltech.edu/event/9626886",
"removeSelectors": ["#s-ui-cc-container"],
"requireSameDimensions": false
},
{
"label": "cards: template-web",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/about",
"delay": 1000,
"selectors": [".c3-cards-wrapper"],
"requireSameDimensions": true
},
{
"label": "cards: template-web--archives-with-intro",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/archives/about",
"delay": 1000,
"selectors": [".c3-cards-wrapper"],
"requireSameDimensions": true
},
{
"label": "cards: template-guide--archives-digital-exhibits-thumbs",
"cookiePath": "backstop_data/engine_scripts/cookies.json",
"url": "https://library.caltech.edu/archives/exhibits/digital",
"delay": 1000,
"selectors": [".gradient-wrapper"],
"requireSameDimensions": true
}
],
"paths": {
"bitmaps_reference": "backstop_data/bitmaps_reference",
"bitmaps_test": "backstop_data/bitmaps_test",
"engine_scripts": "backstop_data/engine_scripts",
"html_report": "backstop_data/html_report",
"ci_report": "backstop_data/ci_report"
},
"report": ["browser"],
"engine": "puppeteer",
"engineOptions": {
"args": ["--no-sandbox"]
},
"asyncCaptureLimit": 5,
"asyncCompareLimit": 50,
"debug": false,
"debugWindow": false
}