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