This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
browsers.json
141 lines (132 loc) · 4.09 KB
/
browsers.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"chrome": {
"command": "%s --whitelisted-ips='' --verbose",
"files": {
"linux": {
"386": {
"url": "http://chromedriver.storage.googleapis.com/2.33/chromedriver_linux32.zip",
"filename": "chromedriver"
},
"amd64": {
"url": "http://chromedriver.storage.googleapis.com/2.33/chromedriver_linux64.zip",
"filename": "chromedriver"
}
},
"darwin": {
"amd64": {
"url": "http://chromedriver.storage.googleapis.com/2.33/chromedriver_mac64.zip",
"filename": "chromedriver"
}
},
"windows": {
"386": {
"url": "http://chromedriver.storage.googleapis.com/2.33/chromedriver_win32.zip",
"filename": "chromedriver.exe"
},
"amd64": {
"url": "http://chromedriver.storage.googleapis.com/2.33/chromedriver_win32.zip",
"filename": "chromedriver.exe"
}
}
}
},
"firefox": {
"command": "%s --host :: --log debug",
"files": {
"linux": {
"386": {
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-linux32.tar.gz",
"filename": "geckodriver"
},
"amd64": {
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-linux64.tar.gz",
"filename": "geckodriver"
}
},
"darwin": {
"amd64": {
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-macos.tar.gz",
"filename": "geckodriver"
}
},
"windows": {
"386": {
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-win32.zip",
"filename": "geckodriver.exe"
},
"amd64": {
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-win64.zip",
"filename": "geckodriver.exe"
}
}
}
},
"opera": {
"command": "%s --whitelisted-ips='' --verbose",
"files": {
"linux": {
"amd64": {
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.2.30/operadriver_linux64.zip",
"filename": "operadriver_linux64/operadriver"
}
},
"darwin": {
"amd64": {
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.2.30/operadriver_mac64.zip",
"filename": "operadriver_mac64/operadriver"
}
},
"windows": {
"386": {
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.2.30/operadriver_win32.zip",
"filename": "operadriver_win32/operadriver.exe"
},
"amd64": {
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.2.30/operadriver_win64.zip",
"filename": "operadriver_win64/operadriver.exe"
}
}
}
},
"safari": {
"command": "%s",
"files": {
"darwin": {
"amd64": {
"url": "",
"filename": "/usr/bin/safaridriver"
}
}
}
},
"internet explorer": {
"command": "%s",
"files": {
"windows": {
"386": {
"url": "http://selenium-release.storage.googleapis.com/3.6/IEDriverServer_Win32_3.6.0.zip",
"filename": "IEDriverServer.exe"
},
"amd64": {
"url": "http://selenium-release.storage.googleapis.com/3.6/IEDriverServer_x64_3.6.0.zip",
"filename": "IEDriverServer.exe"
}
}
}
},
"MicrosoftEdge": {
"command": "%s",
"files": {
"windows": {
"386": {
"url": "https://download.microsoft.com/download/D/4/1/D417998A-58EE-4EFE-A7CC-39EF9E020768/MicrosoftWebDriver.exe",
"filename": "MicrosoftWebDriver.exe"
},
"amd64": {
"url": "https://download.microsoft.com/download/D/4/1/D417998A-58EE-4EFE-A7CC-39EF9E020768/MicrosoftWebDriver.exe",
"filename": "MicrosoftWebDriver.exe"
}
}
}
}
}