-
Notifications
You must be signed in to change notification settings - Fork 3
/
backstop.json
74 lines (74 loc) · 1.94 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
{
"id": "web",
"viewports": [
{
"label": "desktop",
"width": 1920,
"height": 1080
}
],
"onBeforeScript": "puppet/onBefore.js",
"onReadyScript": "puppet/onReady.js",
"scenarios": [
{
"misMatchThreshold": 0.015,
"label": "Header",
"url": "https://www.ratemyagent.com.au//",
"selectors": [
".rmaHeader"
]
},
{
"misMatchThreshold": 0.015,
"label": "Header",
"url": "https://www.ratemyagent.com.au//",
"hideSelectors": [
".rmaHeader"
],
"selectors": [
"div[class*=heroImage]"
]
},
{
"misMatchThreshold": 0.015,
"label": "Footer",
"url": "https://www.ratemyagent.com.au//",
"hideSelectors": [
".rmaHeader"
],
"selectors": [
".rmaFooter"
]
},
{
"misMatchThreshold": 0.015,
"label": "Unauthenicated User: Login Modal",
"url": "https://www.ratemyagent.com.au//",
"clickSelector": "[ng-click=\"login()\"]",
"postInteractionWait": 3000,
"selectors": [
".rmaLoginModal"
]
}
],
"paths": {
"bitmaps_reference": "projects/web/desktop/bitmaps_reference",
"bitmaps_test": "projects/web/desktop/bitmaps_test",
"engine_scripts": "engine_scripts",
"html_report": "projects/web/desktop/html_report",
"ci_report": "projects/web/desktop/ci_report"
},
"report": [
"browser"
],
"engine": "puppeteer",
"engineOptions": {
"args": [
"--no-sandbox"
]
},
"asyncCaptureLimit": 5,
"asyncCompareLimit": 10,
"debug": false,
"debugWindow": false
}