Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
S2-group
GitHub Repository: S2-group/android-runner
Path: blob/master/tests/unit/fixtures/test_config.json
908 views
1
{
2
"type": "web",
3
"devices": [
4
"nexus6p"
5
],
6
"repetitions": 3,
7
"randomization": false,
8
"browsers": [
9
"firefox"
10
],
11
"paths": [
12
"https://google.com/",
13
"https://apple.com/",
14
"https://wikipedia.com/"
15
],
16
"profilers": {
17
"trepn": {
18
"subject_aggregation": "none",
19
"experiment_aggregation": "Scripts/aggregate_trepn.py",
20
"preferences": {
21
"profiling_interval": 100
22
},
23
"data_points": [
24
"battery_power",
25
"mem_usage"
26
]
27
},
28
"android": {
29
"subject_aggregation": "none",
30
"experiment_aggregation": "Scripts/aggregate_android.py",
31
"sample_interval": 200,
32
"data_points": [
33
"cpu",
34
"mem"
35
]
36
}
37
},
38
"scripts": {
39
"before_experiment": "Scripts/before_experiment.py",
40
"before_run": "Scripts/before_run.py",
41
"after_launch": "Scripts/after_launch.py",
42
"interaction": [
43
{
44
"type": "python3",
45
"path": "Scripts/interaction.py",
46
"timeout": 500,
47
"logcat_regex": "some keyword"
48
}
49
],
50
"before_close": "Scripts/before_close.py",
51
"after_run": "Scripts/after_run.py",
52
"after_experiment": "Scripts/after_experiment.py"
53
},
54
"time_between_run": 100
55
}
56
57