-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbrowsers.json
More file actions
executable file
·36 lines (36 loc) · 1.18 KB
/
browsers.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.18 KB
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
{
"firefox": {
"default": "72.0",
"versions": {
"72.0_VNC": {
"image": "selenoid/vnc:firefox_72.0",
"port": "4444",
"path": "/wd/hub",
"env" : ["TZ=Europe/Moscow", "LANG=ru_RU.UTF-8", "LANGUAGE=ru:en", "LC_ALL=ru_RU.UTF-8"]
},
"72.0": {
"image": "selenoid/firefox:72.0",
"port": "4444",
"path": "/wd/hub",
"env" : ["TZ=Europe/Moscow", "LANG=ru_RU.UTF-8", "LANGUAGE=ru:en", "LC_ALL=ru_RU.UTF-8"]
}
}
},
"chrome": {
"default": "80.0",
"versions": {
"80.0": {
"image": "selenoid/chrome:80.0",
"port": "4444",
"path": "/",
"env" : ["TZ=Europe/Moscow", "LANG=ru_RU.UTF-8", "LANGUAGE=ru:en", "LC_ALL=ru_RU.UTF-8"]
},
"80.0_VNC": {
"image": "selenoid/vnc:chrome_80.0",
"port": "4444",
"path": "/",
"env" : ["TZ=Europe/Moscow", "LANG=ru_RU.UTF-8", "LANGUAGE=ru:en", "LC_ALL=ru_RU.UTF-8"]
}
}
}
}