Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
S2-group
GitHub Repository: S2-group/android-runner
Path: blob/master/examples/android/config_web.json
907 views
1
{
2
"type": "web",
3
"devices": {
4
"Pixel 6": {}
5
},
6
"repetitions": 1,
7
"browsers": [
8
"chrome"
9
],
10
"paths": [
11
"https://www.google.com"
12
],
13
"profilers": {
14
"android": {
15
"subject_aggregation": "none",
16
"experiment_aggregation": "Scripts/aggregate_android.py",
17
"sample_interval": 100,
18
"data_points": [
19
"cpu",
20
"mem"
21
]
22
},
23
"Frametimes": {
24
"subject_aggregation" : "default",
25
"sample_interval": 1000
26
}
27
},
28
"scripts": {
29
"before_experiment": "Scripts/before_experiment.py",
30
"before_run": "Scripts/before_run.py",
31
"after_launch": "Scripts/after_launch.py",
32
"interaction": [
33
{
34
"type": "python3",
35
"path": "Scripts/interaction.py"
36
}
37
],
38
"before_close": "Scripts/before_close.py",
39
"after_run": "Scripts/after_run.py",
40
"after_experiment": "Scripts/after_experiment.py"
41
},
42
"time_between_run": 500
43
}
44
45