geckodriver-helper 0.0.5 → 0.20.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/geckodriver-helper.gemspec +1 -0
- data/lib/geckodriver/helper.rb +23 -15
- data/lib/geckodriver/helper/version.rb +1 -1
- data/spec/helper_spec.rb +29 -4
- metadata +16 -7
- data/lib/geckodriver/helper/gecko_release_page_parser.rb +0 -35
- data/spec/assets/gecko-releases.json +0 -1
- data/spec/gecko_release_page_parser_spec.rb +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 165d6a36cefb7c92849f79146f05eaac4c49615a
|
4
|
+
data.tar.gz: 5c36094428bfca033b2bd0d72e66d82948864c39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27d6cbd4c14208c115b16bcab9ce2543ab46346102bbf58b458dcfa2f4efd225d79f7dfd047b3d200727c7b4fd992c1bbdc59ee04502cc5be21edfb139947b78
|
7
|
+
data.tar.gz: eb9eb95a3f8430c5ec7e544d4aeadc490005dde53d8c6d6c322ec6a722613e2058f61b1692f595cb5648a1ca807806c3f7f717d5652a6d6c24ce0144a2905a05
|
data/geckodriver-helper.gemspec
CHANGED
@@ -20,6 +20,7 @@ described by the WebDriver protocol to communicate with Gecko browsers, such as
|
|
20
20
|
|
21
21
|
s.add_development_dependency "rspec", "~> 3.0"
|
22
22
|
s.add_development_dependency "rake", "~> 10.0"
|
23
|
+
s.add_development_dependency "http", "~> 3.0"
|
23
24
|
|
24
25
|
s.add_runtime_dependency "archive-zip", "~> 0.7"
|
25
26
|
end
|
data/lib/geckodriver/helper.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require 'geckodriver/helper/version'
|
2
|
-
require 'geckodriver/helper/gecko_release_page_parser'
|
3
2
|
require 'fileutils'
|
4
3
|
require 'rbconfig'
|
5
4
|
require 'open-uri'
|
@@ -9,6 +8,7 @@ require 'rubygems/package'
|
|
9
8
|
|
10
9
|
module Geckodriver
|
11
10
|
class Helper
|
11
|
+
DRIVER_VERSION = "v0.20.1".freeze
|
12
12
|
|
13
13
|
def run *args
|
14
14
|
download
|
@@ -48,15 +48,18 @@ module Geckodriver
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def download_url
|
51
|
-
|
51
|
+
extension = platform.include?('win') ? 'zip' : 'tar.gz'
|
52
|
+
"https://github.com/mozilla/geckodriver/releases/download/#{DRIVER_VERSION}/geckodriver-#{DRIVER_VERSION}-#{platform}.#{extension}"
|
52
53
|
end
|
53
54
|
|
54
55
|
def binary_path
|
55
|
-
if platform
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
56
|
+
exe = if platform.include?('win')
|
57
|
+
'geckodriver.exe'
|
58
|
+
else
|
59
|
+
'geckodriver'
|
60
|
+
end
|
61
|
+
|
62
|
+
File.join platform_install_dir, exe
|
60
63
|
end
|
61
64
|
|
62
65
|
def platform_install_dir
|
@@ -72,19 +75,25 @@ module Geckodriver
|
|
72
75
|
end
|
73
76
|
|
74
77
|
def platform
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
78
|
+
@platform ||= begin
|
79
|
+
cfg = RbConfig::CONFIG
|
80
|
+
case cfg['host_os']
|
81
|
+
when /linux/
|
82
|
+
append_64_or_32('linux', cfg)
|
83
|
+
when /darwin/
|
84
|
+
'macos'
|
81
85
|
else
|
82
|
-
'win'
|
86
|
+
append_64_or_32('win', cfg)
|
87
|
+
end
|
83
88
|
end
|
84
89
|
end
|
85
90
|
|
86
91
|
private
|
87
92
|
|
93
|
+
def append_64_or_32(platform)
|
94
|
+
cfg['host_cpu'] =~ /x86_64|amd64/ ? "#{platform}64" : "#{platform}32"
|
95
|
+
end
|
96
|
+
|
88
97
|
def unzip(zipfile)
|
89
98
|
Archive::Zip.extract(zipfile, '.', :overwrite => :all)
|
90
99
|
end
|
@@ -106,6 +115,5 @@ module Geckodriver
|
|
106
115
|
end
|
107
116
|
end
|
108
117
|
end
|
109
|
-
|
110
118
|
end
|
111
119
|
end
|
data/spec/helper_spec.rb
CHANGED
@@ -1,21 +1,46 @@
|
|
1
1
|
require 'spec_helper'
|
2
|
+
require 'http'
|
2
3
|
|
3
4
|
describe Geckodriver::Helper do
|
4
5
|
let(:helper) { Geckodriver::Helper.new }
|
5
6
|
|
7
|
+
RSpec::Matchers.define :be_reachable do
|
8
|
+
match do |download_url|
|
9
|
+
response = HTTP.head download_url
|
10
|
+
location = response["Location"]
|
11
|
+
expect(response["Location"]).to include("github-production-release-asset")
|
12
|
+
expect(response["Location"]).to include("s3.amazonaws.com")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
6
16
|
describe '#binary_path' do
|
7
|
-
context 'on a
|
17
|
+
context 'on a linux32 platform' do
|
8
18
|
before { allow(helper).to receive(:platform) { 'linux32' } }
|
19
|
+
it { expect(helper.download_url).to be_reachable }
|
20
|
+
it { expect(helper.binary_path).to match(/geckodriver$/) }
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'on a linux64 platform' do
|
24
|
+
before { allow(helper).to receive(:platform) { 'linux64' } }
|
25
|
+
it { expect(helper.download_url).to be_reachable }
|
9
26
|
it { expect(helper.binary_path).to match(/geckodriver$/) }
|
10
27
|
end
|
11
28
|
|
12
29
|
context 'on a mac platform' do
|
13
|
-
before { allow(helper).to receive(:platform) { '
|
30
|
+
before { allow(helper).to receive(:platform) { 'macos' } }
|
31
|
+
it { expect(helper.download_url).to be_reachable }
|
14
32
|
it { expect(helper.binary_path).to match(/geckodriver$/) }
|
15
33
|
end
|
16
34
|
|
17
|
-
context 'on a
|
18
|
-
before { allow(helper).to receive(:platform) { '
|
35
|
+
context 'on a windows32 platform' do
|
36
|
+
before { allow(helper).to receive(:platform) { 'win32' } }
|
37
|
+
it { expect(helper.download_url).to be_reachable }
|
38
|
+
it { expect(helper.binary_path).to match(/geckodriver\.exe$/) }
|
39
|
+
end
|
40
|
+
|
41
|
+
context 'on a windows64 platform' do
|
42
|
+
before { allow(helper).to receive(:platform) { 'win64' } }
|
43
|
+
it { expect(helper.download_url).to be_reachable }
|
19
44
|
it { expect(helper.binary_path).to match(/geckodriver\.exe$/) }
|
20
45
|
end
|
21
46
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geckodriver-helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Devico Solutions
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: http
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: archive-zip
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -74,10 +88,7 @@ files:
|
|
74
88
|
- bin/geckodriver
|
75
89
|
- geckodriver-helper.gemspec
|
76
90
|
- lib/geckodriver/helper.rb
|
77
|
-
- lib/geckodriver/helper/gecko_release_page_parser.rb
|
78
91
|
- lib/geckodriver/helper/version.rb
|
79
|
-
- spec/assets/gecko-releases.json
|
80
|
-
- spec/gecko_release_page_parser_spec.rb
|
81
92
|
- spec/helper_spec.rb
|
82
93
|
- spec/spec_helper.rb
|
83
94
|
homepage: https://github.com/DevicoSolutions/geckodriver-helper
|
@@ -105,7 +116,5 @@ signing_key:
|
|
105
116
|
specification_version: 4
|
106
117
|
summary: Easy installation and use of geckodriver.
|
107
118
|
test_files:
|
108
|
-
- spec/assets/gecko-releases.json
|
109
|
-
- spec/gecko_release_page_parser_spec.rb
|
110
119
|
- spec/helper_spec.rb
|
111
120
|
- spec/spec_helper.rb
|
@@ -1,35 +0,0 @@
|
|
1
|
-
require 'open-uri'
|
2
|
-
require 'json'
|
3
|
-
|
4
|
-
module Geckodriver
|
5
|
-
class Helper
|
6
|
-
class GeckoReleasePageParser
|
7
|
-
GIT_API_URL = 'https://api.github.com/repos/mozilla/geckodriver/releases'
|
8
|
-
|
9
|
-
attr_reader :platform
|
10
|
-
|
11
|
-
def initialize(platform)
|
12
|
-
@platform = platform
|
13
|
-
end
|
14
|
-
|
15
|
-
def download_url(versions)
|
16
|
-
download_url = nil
|
17
|
-
assets = versions[0]['assets']
|
18
|
-
assets.each do |asset|
|
19
|
-
link = asset['browser_download_url']
|
20
|
-
if link.include? platform
|
21
|
-
download_url = link
|
22
|
-
break
|
23
|
-
end
|
24
|
-
end
|
25
|
-
download_url
|
26
|
-
end
|
27
|
-
|
28
|
-
def latest_release
|
29
|
-
result = JSON.parse(open(GIT_API_URL).read)
|
30
|
-
download_url(result)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
[
|
2
|
{
|
3
1
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/4347443",
|
4
2
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/4347443/assets",
|
5
3
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/4347443/assets{?name,label}",
|
6
4
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.11.1",
|
7
5
|
"id": 4347443,
|
8
6
|
"tag_name": "v0.11.1",
|
9
7
|
"target_commitish": "master",
|
10
8
|
"name": null,
|
11
9
|
"draft": false,
|
12
10
|
"author": {
|
13
11
|
"login": "AutomatedTester",
|
14
12
|
"id": 128518,
|
15
13
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
16
14
|
"gravatar_id": "",
|
17
15
|
"url": "https://api.github.com/users/AutomatedTester",
|
18
16
|
"html_url": "https://github.com/AutomatedTester",
|
19
17
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
20
18
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
21
19
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
22
20
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
23
21
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
24
22
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
25
23
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
26
24
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
27
25
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
28
26
|
"type": "User",
|
29
27
|
"site_admin": false
|
30
28
|
},
|
31
29
|
"prerelease": false,
|
32
30
|
"created_at": "2016-10-10T11:34:17Z",
|
33
31
|
"published_at": "2016-10-10T11:51:27Z",
|
34
32
|
"assets": [
|
35
33
|
{
|
36
34
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449638",
|
37
35
|
"id": 2449638,
|
38
36
|
"name": "geckodriver-v0.11.1-arm7hf.tar.gz",
|
39
37
|
"label": "",
|
40
38
|
"uploader": {
|
41
39
|
"login": "AutomatedTester",
|
42
40
|
"id": 128518,
|
43
41
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
44
42
|
"gravatar_id": "",
|
45
43
|
"url": "https://api.github.com/users/AutomatedTester",
|
46
44
|
"html_url": "https://github.com/AutomatedTester",
|
47
45
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
48
46
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
49
47
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
50
48
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
51
49
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
52
50
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
53
51
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
54
52
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
55
53
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
56
54
|
"type": "User",
|
57
55
|
"site_admin": false
|
58
56
|
},
|
59
57
|
"content_type": "application/gzip",
|
60
58
|
"state": "uploaded",
|
61
59
|
"size": 1708237,
|
62
60
|
"download_count": 5583,
|
63
61
|
"created_at": "2016-10-10T11:51:39Z",
|
64
62
|
"updated_at": "2016-10-10T11:51:39Z",
|
65
63
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-arm7hf.tar.gz"
|
66
64
|
},
|
67
65
|
{
|
68
66
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449639",
|
69
67
|
"id": 2449639,
|
70
68
|
"name": "geckodriver-v0.11.1-linux32.tar.gz",
|
71
69
|
"label": "",
|
72
70
|
"uploader": {
|
73
71
|
"login": "AutomatedTester",
|
74
72
|
"id": 128518,
|
75
73
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
76
74
|
"gravatar_id": "",
|
77
75
|
"url": "https://api.github.com/users/AutomatedTester",
|
78
76
|
"html_url": "https://github.com/AutomatedTester",
|
79
77
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
80
78
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
81
79
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
82
80
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
83
81
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
84
82
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
85
83
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
86
84
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
87
85
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
88
86
|
"type": "User",
|
89
87
|
"site_admin": false
|
90
88
|
},
|
91
89
|
"content_type": "application/gzip",
|
92
90
|
"state": "uploaded",
|
93
91
|
"size": 1502758,
|
94
92
|
"download_count": 2107,
|
95
93
|
"created_at": "2016-10-10T11:51:56Z",
|
96
94
|
"updated_at": "2016-10-10T11:51:57Z",
|
97
95
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-linux32.tar.gz"
|
98
96
|
},
|
99
97
|
{
|
100
98
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449637",
|
101
99
|
"id": 2449637,
|
102
100
|
"name": "geckodriver-v0.11.1-linux64.tar.gz",
|
103
101
|
"label": "",
|
104
102
|
"uploader": {
|
105
103
|
"login": "AutomatedTester",
|
106
104
|
"id": 128518,
|
107
105
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
108
106
|
"gravatar_id": "",
|
109
107
|
"url": "https://api.github.com/users/AutomatedTester",
|
110
108
|
"html_url": "https://github.com/AutomatedTester",
|
111
109
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
112
110
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
113
111
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
114
112
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
115
113
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
116
114
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
117
115
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
118
116
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
119
117
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
120
118
|
"type": "User",
|
121
119
|
"site_admin": false
|
122
120
|
},
|
123
121
|
"content_type": "application/gzip",
|
124
122
|
"state": "uploaded",
|
125
123
|
"size": 1455774,
|
126
124
|
"download_count": 92416,
|
127
125
|
"created_at": "2016-10-10T11:51:26Z",
|
128
126
|
"updated_at": "2016-10-10T11:51:27Z",
|
129
127
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-linux64.tar.gz"
|
130
128
|
},
|
131
129
|
{
|
132
130
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449651",
|
133
131
|
"id": 2449651,
|
134
132
|
"name": "geckodriver-v0.11.1-macos.tar.gz",
|
135
133
|
"label": "",
|
136
134
|
"uploader": {
|
137
135
|
"login": "AutomatedTester",
|
138
136
|
"id": 128518,
|
139
137
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
140
138
|
"gravatar_id": "",
|
141
139
|
"url": "https://api.github.com/users/AutomatedTester",
|
142
140
|
"html_url": "https://github.com/AutomatedTester",
|
143
141
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
144
142
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
145
143
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
146
144
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
147
145
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
148
146
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
149
147
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
150
148
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
151
149
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
152
150
|
"type": "User",
|
153
151
|
"site_admin": false
|
154
152
|
},
|
155
153
|
"content_type": "application/gzip",
|
156
154
|
"state": "uploaded",
|
157
155
|
"size": 1208796,
|
158
156
|
"download_count": 30520,
|
159
157
|
"created_at": "2016-10-10T11:54:28Z",
|
160
158
|
"updated_at": "2016-10-10T11:54:29Z",
|
161
159
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-macos.tar.gz"
|
162
160
|
},
|
163
161
|
{
|
164
162
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449649",
|
165
163
|
"id": 2449649,
|
166
164
|
"name": "geckodriver-v0.11.1-win32.zip",
|
167
165
|
"label": "",
|
168
166
|
"uploader": {
|
169
167
|
"login": "AutomatedTester",
|
170
168
|
"id": 128518,
|
171
169
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
172
170
|
"gravatar_id": "",
|
173
171
|
"url": "https://api.github.com/users/AutomatedTester",
|
174
172
|
"html_url": "https://github.com/AutomatedTester",
|
175
173
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
176
174
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
177
175
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
178
176
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
179
177
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
180
178
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
181
179
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
182
180
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
183
181
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
184
182
|
"type": "User",
|
185
183
|
"site_admin": false
|
186
184
|
},
|
187
185
|
"content_type": "application/zip",
|
188
186
|
"state": "uploaded",
|
189
187
|
"size": 2132770,
|
190
188
|
"download_count": 13849,
|
191
189
|
"created_at": "2016-10-10T11:53:57Z",
|
192
190
|
"updated_at": "2016-10-10T11:53:57Z",
|
193
191
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-win32.zip"
|
194
192
|
},
|
195
193
|
{
|
196
194
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449641",
|
197
195
|
"id": 2449641,
|
198
196
|
"name": "geckodriver-v0.11.1-win64.zip",
|
199
197
|
"label": "",
|
200
198
|
"uploader": {
|
201
199
|
"login": "AutomatedTester",
|
202
200
|
"id": 128518,
|
203
201
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
204
202
|
"gravatar_id": "",
|
205
203
|
"url": "https://api.github.com/users/AutomatedTester",
|
206
204
|
"html_url": "https://github.com/AutomatedTester",
|
207
205
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
208
206
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
209
207
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
210
208
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
211
209
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
212
210
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
213
211
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
214
212
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
215
213
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
216
214
|
"type": "User",
|
217
215
|
"site_admin": false
|
218
216
|
},
|
219
217
|
"content_type": "application/zip",
|
220
218
|
"state": "uploaded",
|
221
219
|
"size": 2486790,
|
222
220
|
"download_count": 60606,
|
223
221
|
"created_at": "2016-10-10T11:52:23Z",
|
224
222
|
"updated_at": "2016-10-10T11:52:24Z",
|
225
223
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-win64.zip"
|
226
224
|
}
|
227
225
|
],
|
228
226
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.11.1",
|
229
227
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.11.1",
|
230
228
|
"body": null
|
231
229
|
},
|
232
230
|
{
|
233
231
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/4347111",
|
234
232
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/4347111/assets",
|
235
233
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/4347111/assets{?name,label}",
|
236
234
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.11.0",
|
237
235
|
"id": 4347111,
|
238
236
|
"tag_name": "v0.11.0",
|
239
237
|
"target_commitish": "master",
|
240
238
|
"name": null,
|
241
239
|
"draft": false,
|
242
240
|
"author": {
|
243
241
|
"login": "AutomatedTester",
|
244
242
|
"id": 128518,
|
245
243
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
246
244
|
"gravatar_id": "",
|
247
245
|
"url": "https://api.github.com/users/AutomatedTester",
|
248
246
|
"html_url": "https://github.com/AutomatedTester",
|
249
247
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
250
248
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
251
249
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
252
250
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
253
251
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
254
252
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
255
253
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
256
254
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
257
255
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
258
256
|
"type": "User",
|
259
257
|
"site_admin": false
|
260
258
|
},
|
261
259
|
"prerelease": false,
|
262
260
|
"created_at": "2016-10-10T10:52:13Z",
|
263
261
|
"published_at": "2016-10-10T10:58:40Z",
|
264
262
|
"assets": [
|
265
263
|
{
|
266
264
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449465",
|
267
265
|
"id": 2449465,
|
268
266
|
"name": "geckodriver-v0.11.0-arm7hf.tar.gz",
|
269
267
|
"label": "",
|
270
268
|
"uploader": {
|
271
269
|
"login": "AutomatedTester",
|
272
270
|
"id": 128518,
|
273
271
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
274
272
|
"gravatar_id": "",
|
275
273
|
"url": "https://api.github.com/users/AutomatedTester",
|
276
274
|
"html_url": "https://github.com/AutomatedTester",
|
277
275
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
278
276
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
279
277
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
280
278
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
281
279
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
282
280
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
283
281
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
284
282
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
285
283
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
286
284
|
"type": "User",
|
287
285
|
"site_admin": false
|
288
286
|
},
|
289
287
|
"content_type": "application/gzip",
|
290
288
|
"state": "uploaded",
|
291
289
|
"size": 1695238,
|
292
290
|
"download_count": 105,
|
293
291
|
"created_at": "2016-10-10T10:58:47Z",
|
294
292
|
"updated_at": "2016-10-10T10:58:47Z",
|
295
293
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.0/geckodriver-v0.11.0-arm7hf.tar.gz"
|
296
294
|
},
|
297
295
|
{
|
298
296
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449464",
|
299
297
|
"id": 2449464,
|
300
298
|
"name": "geckodriver-v0.11.0-linux32.tar.gz",
|
301
299
|
"label": "",
|
302
300
|
"uploader": {
|
303
301
|
"login": "AutomatedTester",
|
304
302
|
"id": 128518,
|
305
303
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
306
304
|
"gravatar_id": "",
|
307
305
|
"url": "https://api.github.com/users/AutomatedTester",
|
308
306
|
"html_url": "https://github.com/AutomatedTester",
|
309
307
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
310
308
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
311
309
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
312
310
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
313
311
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
314
312
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
315
313
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
316
314
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
317
315
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
318
316
|
"type": "User",
|
319
317
|
"site_admin": false
|
320
318
|
},
|
321
319
|
"content_type": "application/gzip",
|
322
320
|
"state": "uploaded",
|
323
321
|
"size": 1498186,
|
324
322
|
"download_count": 86,
|
325
323
|
"created_at": "2016-10-10T10:58:40Z",
|
326
324
|
"updated_at": "2016-10-10T10:58:40Z",
|
327
325
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.0/geckodriver-v0.11.0-linux32.tar.gz"
|
328
326
|
},
|
329
327
|
{
|
330
328
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449466",
|
331
329
|
"id": 2449466,
|
332
330
|
"name": "geckodriver-v0.11.0-linux64.tar.gz",
|
333
331
|
"label": "",
|
334
332
|
"uploader": {
|
335
333
|
"login": "AutomatedTester",
|
336
334
|
"id": 128518,
|
337
335
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
338
336
|
"gravatar_id": "",
|
339
337
|
"url": "https://api.github.com/users/AutomatedTester",
|
340
338
|
"html_url": "https://github.com/AutomatedTester",
|
341
339
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
342
340
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
343
341
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
344
342
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
345
343
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
346
344
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
347
345
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
348
346
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
349
347
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
350
348
|
"type": "User",
|
351
349
|
"site_admin": false
|
352
350
|
},
|
353
351
|
"content_type": "application/gzip",
|
354
352
|
"state": "uploaded",
|
355
353
|
"size": 1451261,
|
356
354
|
"download_count": 382,
|
357
355
|
"created_at": "2016-10-10T10:59:06Z",
|
358
356
|
"updated_at": "2016-10-10T10:59:06Z",
|
359
357
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.0/geckodriver-v0.11.0-linux64.tar.gz"
|
360
358
|
},
|
361
359
|
{
|
362
360
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449481",
|
363
361
|
"id": 2449481,
|
364
362
|
"name": "geckodriver-v0.11.0-macos.tar.gz",
|
365
363
|
"label": "",
|
366
364
|
"uploader": {
|
367
365
|
"login": "AutomatedTester",
|
368
366
|
"id": 128518,
|
369
367
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
370
368
|
"gravatar_id": "",
|
371
369
|
"url": "https://api.github.com/users/AutomatedTester",
|
372
370
|
"html_url": "https://github.com/AutomatedTester",
|
373
371
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
374
372
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
375
373
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
376
374
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
377
375
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
378
376
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
379
377
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
380
378
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
381
379
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
382
380
|
"type": "User",
|
383
381
|
"site_admin": false
|
384
382
|
},
|
385
383
|
"content_type": "application/gzip",
|
386
384
|
"state": "uploaded",
|
387
385
|
"size": 1203475,
|
388
386
|
"download_count": 195,
|
389
387
|
"created_at": "2016-10-10T11:01:23Z",
|
390
388
|
"updated_at": "2016-10-10T11:01:23Z",
|
391
389
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.0/geckodriver-v0.11.0-macos.tar.gz"
|
392
390
|
},
|
393
391
|
{
|
394
392
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449483",
|
395
393
|
"id": 2449483,
|
396
394
|
"name": "geckodriver-v0.11.0-win32.zip",
|
397
395
|
"label": "",
|
398
396
|
"uploader": {
|
399
397
|
"login": "AutomatedTester",
|
400
398
|
"id": 128518,
|
401
399
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
402
400
|
"gravatar_id": "",
|
403
401
|
"url": "https://api.github.com/users/AutomatedTester",
|
404
402
|
"html_url": "https://github.com/AutomatedTester",
|
405
403
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
406
404
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
407
405
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
408
406
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
409
407
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
410
408
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
411
409
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
412
410
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
413
411
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
414
412
|
"type": "User",
|
415
413
|
"site_admin": false
|
416
414
|
},
|
417
415
|
"content_type": "application/zip",
|
418
416
|
"state": "uploaded",
|
419
417
|
"size": 2132970,
|
420
418
|
"download_count": 559,
|
421
419
|
"created_at": "2016-10-10T11:01:33Z",
|
422
420
|
"updated_at": "2016-10-10T11:01:33Z",
|
423
421
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.0/geckodriver-v0.11.0-win32.zip"
|
424
422
|
},
|
425
423
|
{
|
426
424
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2449470",
|
427
425
|
"id": 2449470,
|
428
426
|
"name": "geckodriver-v0.11.0-win64.zip",
|
429
427
|
"label": "",
|
430
428
|
"uploader": {
|
431
429
|
"login": "AutomatedTester",
|
432
430
|
"id": 128518,
|
433
431
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
434
432
|
"gravatar_id": "",
|
435
433
|
"url": "https://api.github.com/users/AutomatedTester",
|
436
434
|
"html_url": "https://github.com/AutomatedTester",
|
437
435
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
438
436
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
439
437
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
440
438
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
441
439
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
442
440
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
443
441
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
444
442
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
445
443
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
446
444
|
"type": "User",
|
447
445
|
"site_admin": false
|
448
446
|
},
|
449
447
|
"content_type": "application/zip",
|
450
448
|
"state": "uploaded",
|
451
449
|
"size": 2456488,
|
452
450
|
"download_count": 1366,
|
453
451
|
"created_at": "2016-10-10T11:00:08Z",
|
454
452
|
"updated_at": "2016-10-10T11:00:08Z",
|
455
453
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.11.0/geckodriver-v0.11.0-win64.zip"
|
456
454
|
}
|
457
455
|
],
|
458
456
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.11.0",
|
459
457
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.11.0",
|
460
458
|
"body": null
|
461
459
|
},
|
462
460
|
{
|
463
461
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/3798083",
|
464
462
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/3798083/assets",
|
465
463
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/3798083/assets{?name,label}",
|
466
464
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.10.0",
|
467
465
|
"id": 3798083,
|
468
466
|
"tag_name": "v0.10.0",
|
469
467
|
"target_commitish": "master",
|
470
468
|
"name": "",
|
471
469
|
"draft": false,
|
472
470
|
"author": {
|
473
471
|
"login": "AutomatedTester",
|
474
472
|
"id": 128518,
|
475
473
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
476
474
|
"gravatar_id": "",
|
477
475
|
"url": "https://api.github.com/users/AutomatedTester",
|
478
476
|
"html_url": "https://github.com/AutomatedTester",
|
479
477
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
480
478
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
481
479
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
482
480
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
483
481
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
484
482
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
485
483
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
486
484
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
487
485
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
488
486
|
"type": "User",
|
489
487
|
"site_admin": false
|
490
488
|
},
|
491
489
|
"prerelease": false,
|
492
490
|
"created_at": "2016-08-02T22:40:31Z",
|
493
491
|
"published_at": "2016-08-02T22:49:21Z",
|
494
492
|
"assets": [
|
495
493
|
{
|
496
494
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2084464",
|
497
495
|
"id": 2084464,
|
498
496
|
"name": "geckodriver-v0.10.0-arm7hf.tar.gz",
|
499
497
|
"label": "",
|
500
498
|
"uploader": {
|
501
499
|
"login": "AutomatedTester",
|
502
500
|
"id": 128518,
|
503
501
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
504
502
|
"gravatar_id": "",
|
505
503
|
"url": "https://api.github.com/users/AutomatedTester",
|
506
504
|
"html_url": "https://github.com/AutomatedTester",
|
507
505
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
508
506
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
509
507
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
510
508
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
511
509
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
512
510
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
513
511
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
514
512
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
515
513
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
516
514
|
"type": "User",
|
517
515
|
"site_admin": false
|
518
516
|
},
|
519
517
|
"content_type": "application/gzip",
|
520
518
|
"state": "uploaded",
|
521
519
|
"size": 1719681,
|
522
520
|
"download_count": 6425,
|
523
521
|
"created_at": "2016-08-02T22:49:44Z",
|
524
522
|
"updated_at": "2016-08-02T22:49:44Z",
|
525
523
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.10.0/geckodriver-v0.10.0-arm7hf.tar.gz"
|
526
524
|
},
|
527
525
|
{
|
528
526
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2084458",
|
529
527
|
"id": 2084458,
|
530
528
|
"name": "geckodriver-v0.10.0-linux64.tar.gz",
|
531
529
|
"label": "",
|
532
530
|
"uploader": {
|
533
531
|
"login": "AutomatedTester",
|
534
532
|
"id": 128518,
|
535
533
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
536
534
|
"gravatar_id": "",
|
537
535
|
"url": "https://api.github.com/users/AutomatedTester",
|
538
536
|
"html_url": "https://github.com/AutomatedTester",
|
539
537
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
540
538
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
541
539
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
542
540
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
543
541
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
544
542
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
545
543
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
546
544
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
547
545
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
548
546
|
"type": "User",
|
549
547
|
"site_admin": false
|
550
548
|
},
|
551
549
|
"content_type": "application/gzip",
|
552
550
|
"state": "uploaded",
|
553
551
|
"size": 1379434,
|
554
552
|
"download_count": 534616,
|
555
553
|
"created_at": "2016-08-02T22:49:20Z",
|
556
554
|
"updated_at": "2016-08-02T22:49:20Z",
|
557
555
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.10.0/geckodriver-v0.10.0-linux64.tar.gz"
|
558
556
|
},
|
559
557
|
{
|
560
558
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2084478",
|
561
559
|
"id": 2084478,
|
562
560
|
"name": "geckodriver-v0.10.0-macos.tar.gz",
|
563
561
|
"label": "",
|
564
562
|
"uploader": {
|
565
563
|
"login": "AutomatedTester",
|
566
564
|
"id": 128518,
|
567
565
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
568
566
|
"gravatar_id": "",
|
569
567
|
"url": "https://api.github.com/users/AutomatedTester",
|
570
568
|
"html_url": "https://github.com/AutomatedTester",
|
571
569
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
572
570
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
573
571
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
574
572
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
575
573
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
576
574
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
577
575
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
578
576
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
579
577
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
580
578
|
"type": "User",
|
581
579
|
"site_admin": false
|
582
580
|
},
|
583
581
|
"content_type": "application/gzip",
|
584
582
|
"state": "uploaded",
|
585
583
|
"size": 1243480,
|
586
584
|
"download_count": 351560,
|
587
585
|
"created_at": "2016-08-02T22:53:25Z",
|
588
586
|
"updated_at": "2016-08-02T22:53:25Z",
|
589
587
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.10.0/geckodriver-v0.10.0-macos.tar.gz"
|
590
588
|
},
|
591
589
|
{
|
592
590
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/2084475",
|
593
591
|
"id": 2084475,
|
594
592
|
"name": "geckodriver-v0.10.0-win64.zip",
|
595
593
|
"label": "",
|
596
594
|
"uploader": {
|
597
595
|
"login": "AutomatedTester",
|
598
596
|
"id": 128518,
|
599
597
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
600
598
|
"gravatar_id": "",
|
601
599
|
"url": "https://api.github.com/users/AutomatedTester",
|
602
600
|
"html_url": "https://github.com/AutomatedTester",
|
603
601
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
604
602
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
605
603
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
606
604
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
607
605
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
608
606
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
609
607
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
610
608
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
611
609
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
612
610
|
"type": "User",
|
613
611
|
"site_admin": false
|
614
612
|
},
|
615
613
|
"content_type": "application/zip",
|
616
614
|
"state": "uploaded",
|
617
615
|
"size": 2388055,
|
618
616
|
"download_count": 195538,
|
619
617
|
"created_at": "2016-08-02T22:51:03Z",
|
620
618
|
"updated_at": "2016-08-02T22:51:03Z",
|
621
619
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.10.0/geckodriver-v0.10.0-win64.zip"
|
622
620
|
}
|
623
621
|
],
|
624
622
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.10.0",
|
625
623
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.10.0",
|
626
624
|
"body": "Only upgrade to this version if you are using Selenium 3 beta releases."
|
627
625
|
},
|
628
626
|
{
|
629
627
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/3561820",
|
630
628
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/3561820/assets",
|
631
629
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/3561820/assets{?name,label}",
|
632
630
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.9.0",
|
633
631
|
"id": 3561820,
|
634
632
|
"tag_name": "v0.9.0",
|
635
633
|
"target_commitish": "master",
|
636
634
|
"name": "",
|
637
635
|
"draft": false,
|
638
636
|
"author": {
|
639
637
|
"login": "AutomatedTester",
|
640
638
|
"id": 128518,
|
641
639
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
642
640
|
"gravatar_id": "",
|
643
641
|
"url": "https://api.github.com/users/AutomatedTester",
|
644
642
|
"html_url": "https://github.com/AutomatedTester",
|
645
643
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
646
644
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
647
645
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
648
646
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
649
647
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
650
648
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
651
649
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
652
650
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
653
651
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
654
652
|
"type": "User",
|
655
653
|
"site_admin": false
|
656
654
|
},
|
657
655
|
"prerelease": false,
|
658
656
|
"created_at": "2016-06-30T16:15:52Z",
|
659
657
|
"published_at": "2016-06-30T17:33:34Z",
|
660
658
|
"assets": [
|
661
659
|
{
|
662
660
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1925136",
|
663
661
|
"id": 1925136,
|
664
662
|
"name": "geckodriver-v0.9.0-arm7hf.tar.gz",
|
665
663
|
"label": "",
|
666
664
|
"uploader": {
|
667
665
|
"login": "AutomatedTester",
|
668
666
|
"id": 128518,
|
669
667
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
670
668
|
"gravatar_id": "",
|
671
669
|
"url": "https://api.github.com/users/AutomatedTester",
|
672
670
|
"html_url": "https://github.com/AutomatedTester",
|
673
671
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
674
672
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
675
673
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
676
674
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
677
675
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
678
676
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
679
677
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
680
678
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
681
679
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
682
680
|
"type": "User",
|
683
681
|
"site_admin": false
|
684
682
|
},
|
685
683
|
"content_type": "application/gzip",
|
686
684
|
"state": "uploaded",
|
687
685
|
"size": 2483492,
|
688
686
|
"download_count": 1357,
|
689
687
|
"created_at": "2016-06-30T16:23:08Z",
|
690
688
|
"updated_at": "2016-06-30T16:23:09Z",
|
691
689
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.9.0/geckodriver-v0.9.0-arm7hf.tar.gz"
|
692
690
|
},
|
693
691
|
{
|
694
692
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1925138",
|
695
693
|
"id": 1925138,
|
696
694
|
"name": "geckodriver-v0.9.0-linux64.tar.gz",
|
697
695
|
"label": "",
|
698
696
|
"uploader": {
|
699
697
|
"login": "AutomatedTester",
|
700
698
|
"id": 128518,
|
701
699
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
702
700
|
"gravatar_id": "",
|
703
701
|
"url": "https://api.github.com/users/AutomatedTester",
|
704
702
|
"html_url": "https://github.com/AutomatedTester",
|
705
703
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
706
704
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
707
705
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
708
706
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
709
707
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
710
708
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
711
709
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
712
710
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
713
711
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
714
712
|
"type": "User",
|
715
713
|
"site_admin": false
|
716
714
|
},
|
717
715
|
"content_type": "application/gzip",
|
718
716
|
"state": "uploaded",
|
719
717
|
"size": 1237128,
|
720
718
|
"download_count": 759103,
|
721
719
|
"created_at": "2016-06-30T16:23:34Z",
|
722
720
|
"updated_at": "2016-06-30T16:23:35Z",
|
723
721
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.9.0/geckodriver-v0.9.0-linux64.tar.gz"
|
724
722
|
},
|
725
723
|
{
|
726
724
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1925226",
|
727
725
|
"id": 1925226,
|
728
726
|
"name": "geckodriver-v0.9.0-mac.tar.gz",
|
729
727
|
"label": "",
|
730
728
|
"uploader": {
|
731
729
|
"login": "AutomatedTester",
|
732
730
|
"id": 128518,
|
733
731
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
734
732
|
"gravatar_id": "",
|
735
733
|
"url": "https://api.github.com/users/AutomatedTester",
|
736
734
|
"html_url": "https://github.com/AutomatedTester",
|
737
735
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
738
736
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
739
737
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
740
738
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
741
739
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
742
740
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
743
741
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
744
742
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
745
743
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
746
744
|
"type": "User",
|
747
745
|
"site_admin": false
|
748
746
|
},
|
749
747
|
"content_type": "application/gzip",
|
750
748
|
"state": "uploaded",
|
751
749
|
"size": 1096885,
|
752
750
|
"download_count": 409706,
|
753
751
|
"created_at": "2016-06-30T16:44:51Z",
|
754
752
|
"updated_at": "2016-06-30T16:44:51Z",
|
755
753
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.9.0/geckodriver-v0.9.0-mac.tar.gz"
|
756
754
|
},
|
757
755
|
{
|
758
756
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1925442",
|
759
757
|
"id": 1925442,
|
760
758
|
"name": "geckodriver-v0.9.0-win64.zip",
|
761
759
|
"label": "",
|
762
760
|
"uploader": {
|
763
761
|
"login": "AutomatedTester",
|
764
762
|
"id": 128518,
|
765
763
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
766
764
|
"gravatar_id": "",
|
767
765
|
"url": "https://api.github.com/users/AutomatedTester",
|
768
766
|
"html_url": "https://github.com/AutomatedTester",
|
769
767
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
770
768
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
771
769
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
772
770
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
773
771
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
774
772
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
775
773
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
776
774
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
777
775
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
778
776
|
"type": "User",
|
779
777
|
"site_admin": false
|
780
778
|
},
|
781
779
|
"content_type": "application/zip",
|
782
780
|
"state": "uploaded",
|
783
781
|
"size": 2202503,
|
784
782
|
"download_count": 355152,
|
785
783
|
"created_at": "2016-06-30T17:33:32Z",
|
786
784
|
"updated_at": "2016-06-30T17:33:34Z",
|
787
785
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.9.0/geckodriver-v0.9.0-win64.zip"
|
788
786
|
}
|
789
787
|
],
|
790
788
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.9.0",
|
791
789
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.9.0",
|
792
790
|
"body": ""
|
793
791
|
},
|
794
792
|
{
|
795
793
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/3408191",
|
796
794
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/3408191/assets",
|
797
795
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/3408191/assets{?name,label}",
|
798
796
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.8.0",
|
799
797
|
"id": 3408191,
|
800
798
|
"tag_name": "v0.8.0",
|
801
799
|
"target_commitish": "master",
|
802
800
|
"name": "v0.8.0",
|
803
801
|
"draft": false,
|
804
802
|
"author": {
|
805
803
|
"login": "AutomatedTester",
|
806
804
|
"id": 128518,
|
807
805
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
808
806
|
"gravatar_id": "",
|
809
807
|
"url": "https://api.github.com/users/AutomatedTester",
|
810
808
|
"html_url": "https://github.com/AutomatedTester",
|
811
809
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
812
810
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
813
811
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
814
812
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
815
813
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
816
814
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
817
815
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
818
816
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
819
817
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
820
818
|
"type": "User",
|
821
819
|
"site_admin": false
|
822
820
|
},
|
823
821
|
"prerelease": true,
|
824
822
|
"created_at": "2016-06-07T16:39:55Z",
|
825
823
|
"published_at": "2016-06-09T12:08:02Z",
|
826
824
|
"assets": [
|
827
825
|
{
|
828
826
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1820629",
|
829
827
|
"id": 1820629,
|
830
828
|
"name": "geckodriver-0.8.0-linux64.gz",
|
831
829
|
"label": null,
|
832
830
|
"uploader": {
|
833
831
|
"login": "jgraham",
|
834
832
|
"id": 294864,
|
835
833
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
836
834
|
"gravatar_id": "",
|
837
835
|
"url": "https://api.github.com/users/jgraham",
|
838
836
|
"html_url": "https://github.com/jgraham",
|
839
837
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
840
838
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
841
839
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
842
840
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
843
841
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
844
842
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
845
843
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
846
844
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
847
845
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
848
846
|
"type": "User",
|
849
847
|
"site_admin": false
|
850
848
|
},
|
851
849
|
"content_type": "application/gzip",
|
852
850
|
"state": "uploaded",
|
853
851
|
"size": 1229624,
|
854
852
|
"download_count": 50833,
|
855
853
|
"created_at": "2016-06-09T13:19:09Z",
|
856
854
|
"updated_at": "2016-06-09T13:19:23Z",
|
857
855
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.8.0/geckodriver-0.8.0-linux64.gz"
|
858
856
|
},
|
859
857
|
{
|
860
858
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1820328",
|
861
859
|
"id": 1820328,
|
862
860
|
"name": "geckodriver-0.8.0-OSX.gz",
|
863
861
|
"label": null,
|
864
862
|
"uploader": {
|
865
863
|
"login": "AutomatedTester",
|
866
864
|
"id": 128518,
|
867
865
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
868
866
|
"gravatar_id": "",
|
869
867
|
"url": "https://api.github.com/users/AutomatedTester",
|
870
868
|
"html_url": "https://github.com/AutomatedTester",
|
871
869
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
872
870
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
873
871
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
874
872
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
875
873
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
876
874
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
877
875
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
878
876
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
879
877
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
880
878
|
"type": "User",
|
881
879
|
"site_admin": false
|
882
880
|
},
|
883
881
|
"content_type": "application/x-gzip",
|
884
882
|
"state": "uploaded",
|
885
883
|
"size": 1071642,
|
886
884
|
"download_count": 21296,
|
887
885
|
"created_at": "2016-06-09T12:07:28Z",
|
888
886
|
"updated_at": "2016-06-09T12:07:47Z",
|
889
887
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.8.0/geckodriver-0.8.0-OSX.gz"
|
890
888
|
},
|
891
889
|
{
|
892
890
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1820334",
|
893
891
|
"id": 1820334,
|
894
892
|
"name": "geckodriver-v0.8.0-win32.zip",
|
895
893
|
"label": null,
|
896
894
|
"uploader": {
|
897
895
|
"login": "AutomatedTester",
|
898
896
|
"id": 128518,
|
899
897
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
900
898
|
"gravatar_id": "",
|
901
899
|
"url": "https://api.github.com/users/AutomatedTester",
|
902
900
|
"html_url": "https://github.com/AutomatedTester",
|
903
901
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
904
902
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
905
903
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
906
904
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
907
905
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
908
906
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
909
907
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
910
908
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
911
909
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
912
910
|
"type": "User",
|
913
911
|
"site_admin": false
|
914
912
|
},
|
915
913
|
"content_type": "application/x-zip-compressed",
|
916
914
|
"state": "uploaded",
|
917
915
|
"size": 806853,
|
918
916
|
"download_count": 17852,
|
919
917
|
"created_at": "2016-06-09T12:09:17Z",
|
920
918
|
"updated_at": "2016-06-09T12:09:29Z",
|
921
919
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.8.0/geckodriver-v0.8.0-win32.zip"
|
922
920
|
}
|
923
921
|
],
|
924
922
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.8.0",
|
925
923
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.8.0",
|
926
924
|
"body": "Only Nightly, DevEdition and Beta are officially supported. Other versions may work but are not explicitly supported.\r\n\r\nThe protocol will work from Firefox 45 onwards.\r\n"
|
927
925
|
},
|
928
926
|
{
|
929
927
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/3151670",
|
930
928
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/3151670/assets",
|
931
929
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/3151670/assets{?name,label}",
|
932
930
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.7.1",
|
933
931
|
"id": 3151670,
|
934
932
|
"tag_name": "v0.7.1",
|
935
933
|
"target_commitish": "master",
|
936
934
|
"name": "v0.7.1",
|
937
935
|
"draft": false,
|
938
936
|
"author": {
|
939
937
|
"login": "AutomatedTester",
|
940
938
|
"id": 128518,
|
941
939
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
942
940
|
"gravatar_id": "",
|
943
941
|
"url": "https://api.github.com/users/AutomatedTester",
|
944
942
|
"html_url": "https://github.com/AutomatedTester",
|
945
943
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
946
944
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
947
945
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
948
946
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
949
947
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
950
948
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
951
949
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
952
950
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
953
951
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
954
952
|
"type": "User",
|
955
953
|
"site_admin": false
|
956
954
|
},
|
957
955
|
"prerelease": true,
|
958
956
|
"created_at": "2016-04-27T14:18:39Z",
|
959
957
|
"published_at": "2016-05-03T21:08:42Z",
|
960
958
|
"assets": [
|
961
959
|
{
|
962
960
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1635500",
|
963
961
|
"id": 1635500,
|
964
962
|
"name": "wires-0.7.1-linux64.gz",
|
965
963
|
"label": null,
|
966
964
|
"uploader": {
|
967
965
|
"login": "AutomatedTester",
|
968
966
|
"id": 128518,
|
969
967
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
970
968
|
"gravatar_id": "",
|
971
969
|
"url": "https://api.github.com/users/AutomatedTester",
|
972
970
|
"html_url": "https://github.com/AutomatedTester",
|
973
971
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
974
972
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
975
973
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
976
974
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
977
975
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
978
976
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
979
977
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
980
978
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
981
979
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
982
980
|
"type": "User",
|
983
981
|
"site_admin": false
|
984
982
|
},
|
985
983
|
"content_type": "application/gzip",
|
986
984
|
"state": "uploaded",
|
987
985
|
"size": 1199300,
|
988
986
|
"download_count": 1235,
|
989
987
|
"created_at": "2016-05-03T22:18:13Z",
|
990
988
|
"updated_at": "2016-05-03T22:18:37Z",
|
991
989
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.7.1/wires-0.7.1-linux64.gz"
|
992
990
|
},
|
993
991
|
{
|
994
992
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1635160",
|
995
993
|
"id": 1635160,
|
996
994
|
"name": "wires-0.7.1-OSX.gz",
|
997
995
|
"label": null,
|
998
996
|
"uploader": {
|
999
997
|
"login": "AutomatedTester",
|
1000
998
|
"id": 128518,
|
1001
999
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1002
1000
|
"gravatar_id": "",
|
1003
1001
|
"url": "https://api.github.com/users/AutomatedTester",
|
1004
1002
|
"html_url": "https://github.com/AutomatedTester",
|
1005
1003
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1006
1004
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1007
1005
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1008
1006
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1009
1007
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1010
1008
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1011
1009
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1012
1010
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1013
1011
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1014
1012
|
"type": "User",
|
1015
1013
|
"site_admin": false
|
1016
1014
|
},
|
1017
1015
|
"content_type": "application/x-gzip",
|
1018
1016
|
"state": "uploaded",
|
1019
1017
|
"size": 1061231,
|
1020
1018
|
"download_count": 486,
|
1021
1019
|
"created_at": "2016-05-03T21:06:48Z",
|
1022
1020
|
"updated_at": "2016-05-03T21:07:04Z",
|
1023
1021
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.7.1/wires-0.7.1-OSX.gz"
|
1024
1022
|
},
|
1025
1023
|
{
|
1026
1024
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1806192",
|
1027
1025
|
"id": 1806192,
|
1028
1026
|
"name": "wires-v0.7.1-win32.zip",
|
1029
1027
|
"label": null,
|
1030
1028
|
"uploader": {
|
1031
1029
|
"login": "AutomatedTester",
|
1032
1030
|
"id": 128518,
|
1033
1031
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1034
1032
|
"gravatar_id": "",
|
1035
1033
|
"url": "https://api.github.com/users/AutomatedTester",
|
1036
1034
|
"html_url": "https://github.com/AutomatedTester",
|
1037
1035
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1038
1036
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1039
1037
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1040
1038
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1041
1039
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1042
1040
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1043
1041
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1044
1042
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1045
1043
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1046
1044
|
"type": "User",
|
1047
1045
|
"site_admin": false
|
1048
1046
|
},
|
1049
1047
|
"content_type": "application/x-zip-compressed",
|
1050
1048
|
"state": "uploaded",
|
1051
1049
|
"size": 780720,
|
1052
1050
|
"download_count": 1645,
|
1053
1051
|
"created_at": "2016-06-07T08:04:03Z",
|
1054
1052
|
"updated_at": "2016-06-07T08:04:14Z",
|
1055
1053
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.7.1/wires-v0.7.1-win32.zip"
|
1056
1054
|
}
|
1057
1055
|
],
|
1058
1056
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.7.1",
|
1059
1057
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.7.1",
|
1060
1058
|
"body": "Only Nightly, DevEdition and Beta are officially supported. Other versions may work but are not explicitly supported.\r\n\r\nThe protocol will work from Firefox 45 onwards."
|
1061
1059
|
},
|
1062
1060
|
{
|
1063
1061
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/2466044",
|
1064
1062
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/2466044/assets",
|
1065
1063
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/2466044/assets{?name,label}",
|
1066
1064
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.6.2",
|
1067
1065
|
"id": 2466044,
|
1068
1066
|
"tag_name": "v0.6.2",
|
1069
1067
|
"target_commitish": "master",
|
1070
1068
|
"name": "0.6.2",
|
1071
1069
|
"draft": false,
|
1072
1070
|
"author": {
|
1073
1071
|
"login": "jgraham",
|
1074
1072
|
"id": 294864,
|
1075
1073
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1076
1074
|
"gravatar_id": "",
|
1077
1075
|
"url": "https://api.github.com/users/jgraham",
|
1078
1076
|
"html_url": "https://github.com/jgraham",
|
1079
1077
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1080
1078
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1081
1079
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1082
1080
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1083
1081
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1084
1082
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1085
1083
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1086
1084
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1087
1085
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1088
1086
|
"type": "User",
|
1089
1087
|
"site_admin": false
|
1090
1088
|
},
|
1091
1089
|
"prerelease": true,
|
1092
1090
|
"created_at": "2016-01-20T12:55:13Z",
|
1093
1091
|
"published_at": "2016-01-21T09:36:25Z",
|
1094
1092
|
"assets": [
|
1095
1093
|
{
|
1096
1094
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1230978",
|
1097
1095
|
"id": 1230978,
|
1098
1096
|
"name": "wires-0.6.2-linux64.gz",
|
1099
1097
|
"label": null,
|
1100
1098
|
"uploader": {
|
1101
1099
|
"login": "jgraham",
|
1102
1100
|
"id": 294864,
|
1103
1101
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1104
1102
|
"gravatar_id": "",
|
1105
1103
|
"url": "https://api.github.com/users/jgraham",
|
1106
1104
|
"html_url": "https://github.com/jgraham",
|
1107
1105
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1108
1106
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1109
1107
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1110
1108
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1111
1109
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1112
1110
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1113
1111
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1114
1112
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1115
1113
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1116
1114
|
"type": "User",
|
1117
1115
|
"site_admin": false
|
1118
1116
|
},
|
1119
1117
|
"content_type": "application/gzip",
|
1120
1118
|
"state": "uploaded",
|
1121
1119
|
"size": 1040924,
|
1122
1120
|
"download_count": 3866,
|
1123
1121
|
"created_at": "2016-01-21T09:36:19Z",
|
1124
1122
|
"updated_at": "2016-01-21T09:36:21Z",
|
1125
1123
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.6.2/wires-0.6.2-linux64.gz"
|
1126
1124
|
},
|
1127
1125
|
{
|
1128
1126
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1234884",
|
1129
1127
|
"id": 1234884,
|
1130
1128
|
"name": "wires-0.6.2-OSX.gz",
|
1131
1129
|
"label": null,
|
1132
1130
|
"uploader": {
|
1133
1131
|
"login": "AutomatedTester",
|
1134
1132
|
"id": 128518,
|
1135
1133
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1136
1134
|
"gravatar_id": "",
|
1137
1135
|
"url": "https://api.github.com/users/AutomatedTester",
|
1138
1136
|
"html_url": "https://github.com/AutomatedTester",
|
1139
1137
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1140
1138
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1141
1139
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1142
1140
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1143
1141
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1144
1142
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1145
1143
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1146
1144
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1147
1145
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1148
1146
|
"type": "User",
|
1149
1147
|
"site_admin": false
|
1150
1148
|
},
|
1151
1149
|
"content_type": "application/x-gzip",
|
1152
1150
|
"state": "uploaded",
|
1153
1151
|
"size": 871053,
|
1154
1152
|
"download_count": 2275,
|
1155
1153
|
"created_at": "2016-01-22T12:02:14Z",
|
1156
1154
|
"updated_at": "2016-01-22T12:02:28Z",
|
1157
1155
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.6.2/wires-0.6.2-OSX.gz"
|
1158
1156
|
},
|
1159
1157
|
{
|
1160
1158
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1235343",
|
1161
1159
|
"id": 1235343,
|
1162
1160
|
"name": "wires-0.6.2-win.zip",
|
1163
1161
|
"label": null,
|
1164
1162
|
"uploader": {
|
1165
1163
|
"login": "AutomatedTester",
|
1166
1164
|
"id": 128518,
|
1167
1165
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1168
1166
|
"gravatar_id": "",
|
1169
1167
|
"url": "https://api.github.com/users/AutomatedTester",
|
1170
1168
|
"html_url": "https://github.com/AutomatedTester",
|
1171
1169
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1172
1170
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1173
1171
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1174
1172
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1175
1173
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1176
1174
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1177
1175
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1178
1176
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1179
1177
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1180
1178
|
"type": "User",
|
1181
1179
|
"site_admin": false
|
1182
1180
|
},
|
1183
1181
|
"content_type": "application/x-zip-compressed",
|
1184
1182
|
"state": "uploaded",
|
1185
1183
|
"size": 1962961,
|
1186
1184
|
"download_count": 8735,
|
1187
1185
|
"created_at": "2016-01-22T14:31:06Z",
|
1188
1186
|
"updated_at": "2016-01-22T14:31:37Z",
|
1189
1187
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.6.2/wires-0.6.2-win.zip"
|
1190
1188
|
}
|
1191
1189
|
],
|
1192
1190
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.6.2",
|
1193
1191
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.6.2",
|
1194
1192
|
"body": "Only Nightly and DevEdition are officially supported. Other versions may work but are not explicitly supported.\r\n\r\nThis supports Firefox 45+.\r\n"
|
1195
1193
|
},
|
1196
1194
|
{
|
1197
1195
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/2415906",
|
1198
1196
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/2415906/assets",
|
1199
1197
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/2415906/assets{?name,label}",
|
1200
1198
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.6.0",
|
1201
1199
|
"id": 2415906,
|
1202
1200
|
"tag_name": "v0.6.0",
|
1203
1201
|
"target_commitish": "master",
|
1204
1202
|
"name": "v0.6.0",
|
1205
1203
|
"draft": false,
|
1206
1204
|
"author": {
|
1207
1205
|
"login": "AutomatedTester",
|
1208
1206
|
"id": 128518,
|
1209
1207
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1210
1208
|
"gravatar_id": "",
|
1211
1209
|
"url": "https://api.github.com/users/AutomatedTester",
|
1212
1210
|
"html_url": "https://github.com/AutomatedTester",
|
1213
1211
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1214
1212
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1215
1213
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1216
1214
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1217
1215
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1218
1216
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1219
1217
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1220
1218
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1221
1219
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1222
1220
|
"type": "User",
|
1223
1221
|
"site_admin": false
|
1224
1222
|
},
|
1225
1223
|
"prerelease": true,
|
1226
1224
|
"created_at": "2016-01-12T21:45:14Z",
|
1227
1225
|
"published_at": "2016-01-12T22:04:48Z",
|
1228
1226
|
"assets": [
|
1229
1227
|
{
|
1230
1228
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1204839",
|
1231
1229
|
"id": 1204839,
|
1232
1230
|
"name": "wires-0.6.0-linux.gz",
|
1233
1231
|
"label": null,
|
1234
1232
|
"uploader": {
|
1235
1233
|
"login": "AutomatedTester",
|
1236
1234
|
"id": 128518,
|
1237
1235
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1238
1236
|
"gravatar_id": "",
|
1239
1237
|
"url": "https://api.github.com/users/AutomatedTester",
|
1240
1238
|
"html_url": "https://github.com/AutomatedTester",
|
1241
1239
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1242
1240
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1243
1241
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1244
1242
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1245
1243
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1246
1244
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1247
1245
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1248
1246
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1249
1247
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1250
1248
|
"type": "User",
|
1251
1249
|
"site_admin": false
|
1252
1250
|
},
|
1253
1251
|
"content_type": "application/gzip",
|
1254
1252
|
"state": "uploaded",
|
1255
1253
|
"size": 813317,
|
1256
1254
|
"download_count": 174,
|
1257
1255
|
"created_at": "2016-01-12T22:40:38Z",
|
1258
1256
|
"updated_at": "2016-01-12T22:40:53Z",
|
1259
1257
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.6.0/wires-0.6.0-linux.gz"
|
1260
1258
|
},
|
1261
1259
|
{
|
1262
1260
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1204703",
|
1263
1261
|
"id": 1204703,
|
1264
1262
|
"name": "wires-0.6.0-osx.gz",
|
1265
1263
|
"label": null,
|
1266
1264
|
"uploader": {
|
1267
1265
|
"login": "AutomatedTester",
|
1268
1266
|
"id": 128518,
|
1269
1267
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1270
1268
|
"gravatar_id": "",
|
1271
1269
|
"url": "https://api.github.com/users/AutomatedTester",
|
1272
1270
|
"html_url": "https://github.com/AutomatedTester",
|
1273
1271
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1274
1272
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1275
1273
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1276
1274
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1277
1275
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1278
1276
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1279
1277
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1280
1278
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1281
1279
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1282
1280
|
"type": "User",
|
1283
1281
|
"site_admin": false
|
1284
1282
|
},
|
1285
1283
|
"content_type": "application/x-gzip",
|
1286
1284
|
"state": "uploaded",
|
1287
1285
|
"size": 708480,
|
1288
1286
|
"download_count": 200,
|
1289
1287
|
"created_at": "2016-01-12T22:04:15Z",
|
1290
1288
|
"updated_at": "2016-01-12T22:04:29Z",
|
1291
1289
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.6.0/wires-0.6.0-osx.gz"
|
1292
1290
|
},
|
1293
1291
|
{
|
1294
1292
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1210145",
|
1295
1293
|
"id": 1210145,
|
1296
1294
|
"name": "wires-0.6.0-win.zip",
|
1297
1295
|
"label": null,
|
1298
1296
|
"uploader": {
|
1299
1297
|
"login": "AutomatedTester",
|
1300
1298
|
"id": 128518,
|
1301
1299
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1302
1300
|
"gravatar_id": "",
|
1303
1301
|
"url": "https://api.github.com/users/AutomatedTester",
|
1304
1302
|
"html_url": "https://github.com/AutomatedTester",
|
1305
1303
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1306
1304
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1307
1305
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1308
1306
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1309
1307
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1310
1308
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1311
1309
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1312
1310
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1313
1311
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1314
1312
|
"type": "User",
|
1315
1313
|
"site_admin": false
|
1316
1314
|
},
|
1317
1315
|
"content_type": "application/x-zip-compressed",
|
1318
1316
|
"state": "uploaded",
|
1319
1317
|
"size": 1803845,
|
1320
1318
|
"download_count": 770,
|
1321
1319
|
"created_at": "2016-01-14T11:36:09Z",
|
1322
1320
|
"updated_at": "2016-01-14T11:36:39Z",
|
1323
1321
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.6.0/wires-0.6.0-win.zip"
|
1324
1322
|
}
|
1325
1323
|
],
|
1326
1324
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.6.0",
|
1327
1325
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.6.0",
|
1328
1326
|
"body": "Only Nightly and DevEdition are officially supported. Other versions may work but are not explicitly supported.\r\n\r\nThis supports Firefox 45+.\r\n"
|
1329
1327
|
},
|
1330
1328
|
{
|
1331
1329
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/2266954",
|
1332
1330
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/2266954/assets",
|
1333
1331
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/2266954/assets{?name,label}",
|
1334
1332
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.5.0",
|
1335
1333
|
"id": 2266954,
|
1336
1334
|
"tag_name": "v0.5.0",
|
1337
1335
|
"target_commitish": "master",
|
1338
1336
|
"name": "v0.5.0",
|
1339
1337
|
"draft": false,
|
1340
1338
|
"author": {
|
1341
1339
|
"login": "AutomatedTester",
|
1342
1340
|
"id": 128518,
|
1343
1341
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1344
1342
|
"gravatar_id": "",
|
1345
1343
|
"url": "https://api.github.com/users/AutomatedTester",
|
1346
1344
|
"html_url": "https://github.com/AutomatedTester",
|
1347
1345
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1348
1346
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1349
1347
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1350
1348
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1351
1349
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1352
1350
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1353
1351
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1354
1352
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1355
1353
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1356
1354
|
"type": "User",
|
1357
1355
|
"site_admin": false
|
1358
1356
|
},
|
1359
1357
|
"prerelease": true,
|
1360
1358
|
"created_at": "2015-12-10T15:51:06Z",
|
1361
1359
|
"published_at": "2015-12-10T16:11:54Z",
|
1362
1360
|
"assets": [
|
1363
1361
|
{
|
1364
1362
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1115760",
|
1365
1363
|
"id": 1115760,
|
1366
1364
|
"name": "wires-0.5.0-linux64.gz",
|
1367
1365
|
"label": null,
|
1368
1366
|
"uploader": {
|
1369
1367
|
"login": "jgraham",
|
1370
1368
|
"id": 294864,
|
1371
1369
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1372
1370
|
"gravatar_id": "",
|
1373
1371
|
"url": "https://api.github.com/users/jgraham",
|
1374
1372
|
"html_url": "https://github.com/jgraham",
|
1375
1373
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1376
1374
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1377
1375
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1378
1376
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1379
1377
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1380
1378
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1381
1379
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1382
1380
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1383
1381
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1384
1382
|
"type": "User",
|
1385
1383
|
"site_admin": false
|
1386
1384
|
},
|
1387
1385
|
"content_type": "application/gzip",
|
1388
1386
|
"state": "uploaded",
|
1389
1387
|
"size": 812826,
|
1390
1388
|
"download_count": 472,
|
1391
1389
|
"created_at": "2015-12-10T16:36:43Z",
|
1392
1390
|
"updated_at": "2015-12-10T16:36:45Z",
|
1393
1391
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.5.0/wires-0.5.0-linux64.gz"
|
1394
1392
|
},
|
1395
1393
|
{
|
1396
1394
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1115692",
|
1397
1395
|
"id": 1115692,
|
1398
1396
|
"name": "wires-0.5.0-osx.gz",
|
1399
1397
|
"label": null,
|
1400
1398
|
"uploader": {
|
1401
1399
|
"login": "AutomatedTester",
|
1402
1400
|
"id": 128518,
|
1403
1401
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1404
1402
|
"gravatar_id": "",
|
1405
1403
|
"url": "https://api.github.com/users/AutomatedTester",
|
1406
1404
|
"html_url": "https://github.com/AutomatedTester",
|
1407
1405
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1408
1406
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1409
1407
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1410
1408
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1411
1409
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1412
1410
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1413
1411
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1414
1412
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1415
1413
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1416
1414
|
"type": "User",
|
1417
1415
|
"site_admin": false
|
1418
1416
|
},
|
1419
1417
|
"content_type": "application/x-gzip",
|
1420
1418
|
"state": "uploaded",
|
1421
1419
|
"size": 708005,
|
1422
1420
|
"download_count": 192,
|
1423
1421
|
"created_at": "2015-12-10T16:11:47Z",
|
1424
1422
|
"updated_at": "2015-12-10T16:11:49Z",
|
1425
1423
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.5.0/wires-0.5.0-osx.gz"
|
1426
1424
|
},
|
1427
1425
|
{
|
1428
1426
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/1115825",
|
1429
1427
|
"id": 1115825,
|
1430
1428
|
"name": "wires-v0.5.0-win.zip",
|
1431
1429
|
"label": null,
|
1432
1430
|
"uploader": {
|
1433
1431
|
"login": "AutomatedTester",
|
1434
1432
|
"id": 128518,
|
1435
1433
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1436
1434
|
"gravatar_id": "",
|
1437
1435
|
"url": "https://api.github.com/users/AutomatedTester",
|
1438
1436
|
"html_url": "https://github.com/AutomatedTester",
|
1439
1437
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1440
1438
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1441
1439
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1442
1440
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1443
1441
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1444
1442
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1445
1443
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1446
1444
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1447
1445
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1448
1446
|
"type": "User",
|
1449
1447
|
"site_admin": false
|
1450
1448
|
},
|
1451
1449
|
"content_type": "application/x-zip-compressed",
|
1452
1450
|
"state": "uploaded",
|
1453
1451
|
"size": 1803492,
|
1454
1452
|
"download_count": 1518,
|
1455
1453
|
"created_at": "2015-12-10T17:03:47Z",
|
1456
1454
|
"updated_at": "2015-12-10T17:03:50Z",
|
1457
1455
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.5.0/wires-v0.5.0-win.zip"
|
1458
1456
|
}
|
1459
1457
|
],
|
1460
1458
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.5.0",
|
1461
1459
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.5.0",
|
1462
1460
|
"body": "Only Nightly and DevEdition are official supported. Other versions may work but are not explicitly supported. \r\n\r\nThis supports Firefox 45+."
|
1463
1461
|
},
|
1464
1462
|
{
|
1465
1463
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/1904503",
|
1466
1464
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/1904503/assets",
|
1467
1465
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/1904503/assets{?name,label}",
|
1468
1466
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.4.2",
|
1469
1467
|
"id": 1904503,
|
1470
1468
|
"tag_name": "v0.4.2",
|
1471
1469
|
"target_commitish": "master",
|
1472
1470
|
"name": "",
|
1473
1471
|
"draft": false,
|
1474
1472
|
"author": {
|
1475
1473
|
"login": "AutomatedTester",
|
1476
1474
|
"id": 128518,
|
1477
1475
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1478
1476
|
"gravatar_id": "",
|
1479
1477
|
"url": "https://api.github.com/users/AutomatedTester",
|
1480
1478
|
"html_url": "https://github.com/AutomatedTester",
|
1481
1479
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1482
1480
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1483
1481
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1484
1482
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1485
1483
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1486
1484
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1487
1485
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1488
1486
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1489
1487
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1490
1488
|
"type": "User",
|
1491
1489
|
"site_admin": false
|
1492
1490
|
},
|
1493
1491
|
"prerelease": true,
|
1494
1492
|
"created_at": "2015-10-02T20:11:56Z",
|
1495
1493
|
"published_at": "2015-10-02T20:41:14Z",
|
1496
1494
|
"assets": [
|
1497
1495
|
{
|
1498
1496
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/912433",
|
1499
1497
|
"id": 912433,
|
1500
1498
|
"name": "wires-0.4.2-linux64.gz",
|
1501
1499
|
"label": null,
|
1502
1500
|
"uploader": {
|
1503
1501
|
"login": "jgraham",
|
1504
1502
|
"id": 294864,
|
1505
1503
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1506
1504
|
"gravatar_id": "",
|
1507
1505
|
"url": "https://api.github.com/users/jgraham",
|
1508
1506
|
"html_url": "https://github.com/jgraham",
|
1509
1507
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1510
1508
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1511
1509
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1512
1510
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1513
1511
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1514
1512
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1515
1513
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1516
1514
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1517
1515
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1518
1516
|
"type": "User",
|
1519
1517
|
"site_admin": false
|
1520
1518
|
},
|
1521
1519
|
"content_type": "application/gzip",
|
1522
1520
|
"state": "uploaded",
|
1523
1521
|
"size": 844573,
|
1524
1522
|
"download_count": 826,
|
1525
1523
|
"created_at": "2015-10-02T22:14:45Z",
|
1526
1524
|
"updated_at": "2015-10-02T22:14:47Z",
|
1527
1525
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.2/wires-0.4.2-linux64.gz"
|
1528
1526
|
},
|
1529
1527
|
{
|
1530
1528
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/912178",
|
1531
1529
|
"id": 912178,
|
1532
1530
|
"name": "wires-0.4.2-osx.gz",
|
1533
1531
|
"label": null,
|
1534
1532
|
"uploader": {
|
1535
1533
|
"login": "AutomatedTester",
|
1536
1534
|
"id": 128518,
|
1537
1535
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1538
1536
|
"gravatar_id": "",
|
1539
1537
|
"url": "https://api.github.com/users/AutomatedTester",
|
1540
1538
|
"html_url": "https://github.com/AutomatedTester",
|
1541
1539
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1542
1540
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1543
1541
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1544
1542
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1545
1543
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1546
1544
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1547
1545
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1548
1546
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1549
1547
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1550
1548
|
"type": "User",
|
1551
1549
|
"site_admin": false
|
1552
1550
|
},
|
1553
1551
|
"content_type": "application/x-gzip",
|
1554
1552
|
"state": "uploaded",
|
1555
1553
|
"size": 734196,
|
1556
1554
|
"download_count": 507,
|
1557
1555
|
"created_at": "2015-10-02T20:21:36Z",
|
1558
1556
|
"updated_at": "2015-10-02T20:21:55Z",
|
1559
1557
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.2/wires-0.4.2-osx.gz"
|
1560
1558
|
},
|
1561
1559
|
{
|
1562
1560
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/912255",
|
1563
1561
|
"id": 912255,
|
1564
1562
|
"name": "wires-0.4.2-win.zip",
|
1565
1563
|
"label": null,
|
1566
1564
|
"uploader": {
|
1567
1565
|
"login": "AutomatedTester",
|
1568
1566
|
"id": 128518,
|
1569
1567
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1570
1568
|
"gravatar_id": "",
|
1571
1569
|
"url": "https://api.github.com/users/AutomatedTester",
|
1572
1570
|
"html_url": "https://github.com/AutomatedTester",
|
1573
1571
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1574
1572
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1575
1573
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1576
1574
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1577
1575
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1578
1576
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1579
1577
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1580
1578
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1581
1579
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1582
1580
|
"type": "User",
|
1583
1581
|
"site_admin": false
|
1584
1582
|
},
|
1585
1583
|
"content_type": "application/x-zip-compressed",
|
1586
1584
|
"state": "uploaded",
|
1587
1585
|
"size": 1891954,
|
1588
1586
|
"download_count": 3515,
|
1589
1587
|
"created_at": "2015-10-02T20:48:46Z",
|
1590
1588
|
"updated_at": "2015-10-02T20:49:22Z",
|
1591
1589
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.2/wires-0.4.2-win.zip"
|
1592
1590
|
}
|
1593
1591
|
],
|
1594
1592
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.4.2",
|
1595
1593
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.4.2",
|
1596
1594
|
"body": "Only Nightly and DevEdition are official supported. Other versions may work but are not explicitly supported."
|
1597
1595
|
},
|
1598
1596
|
{
|
1599
1597
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/1902309",
|
1600
1598
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/1902309/assets",
|
1601
1599
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/1902309/assets{?name,label}",
|
1602
1600
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.4.1",
|
1603
1601
|
"id": 1902309,
|
1604
1602
|
"tag_name": "v0.4.1",
|
1605
1603
|
"target_commitish": "master",
|
1606
1604
|
"name": "",
|
1607
1605
|
"draft": false,
|
1608
1606
|
"author": {
|
1609
1607
|
"login": "AutomatedTester",
|
1610
1608
|
"id": 128518,
|
1611
1609
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1612
1610
|
"gravatar_id": "",
|
1613
1611
|
"url": "https://api.github.com/users/AutomatedTester",
|
1614
1612
|
"html_url": "https://github.com/AutomatedTester",
|
1615
1613
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1616
1614
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1617
1615
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1618
1616
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1619
1617
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1620
1618
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1621
1619
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1622
1620
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1623
1621
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1624
1622
|
"type": "User",
|
1625
1623
|
"site_admin": false
|
1626
1624
|
},
|
1627
1625
|
"prerelease": true,
|
1628
1626
|
"created_at": "2015-10-02T13:27:03Z",
|
1629
1627
|
"published_at": "2015-10-02T13:38:52Z",
|
1630
1628
|
"assets": [
|
1631
1629
|
{
|
1632
1630
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/910839",
|
1633
1631
|
"id": 910839,
|
1634
1632
|
"name": "wires-0.4.1-osx.gz",
|
1635
1633
|
"label": null,
|
1636
1634
|
"uploader": {
|
1637
1635
|
"login": "AutomatedTester",
|
1638
1636
|
"id": 128518,
|
1639
1637
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1640
1638
|
"gravatar_id": "",
|
1641
1639
|
"url": "https://api.github.com/users/AutomatedTester",
|
1642
1640
|
"html_url": "https://github.com/AutomatedTester",
|
1643
1641
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1644
1642
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1645
1643
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1646
1644
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1647
1645
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1648
1646
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1649
1647
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1650
1648
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1651
1649
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1652
1650
|
"type": "User",
|
1653
1651
|
"site_admin": false
|
1654
1652
|
},
|
1655
1653
|
"content_type": "application/x-gzip",
|
1656
1654
|
"state": "uploaded",
|
1657
1655
|
"size": 788646,
|
1658
1656
|
"download_count": 7,
|
1659
1657
|
"created_at": "2015-10-02T13:38:35Z",
|
1660
1658
|
"updated_at": "2015-10-02T13:38:47Z",
|
1661
1659
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.1/wires-0.4.1-osx.gz"
|
1662
1660
|
}
|
1663
1661
|
],
|
1664
1662
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.4.1",
|
1665
1663
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.4.1",
|
1666
1664
|
"body": "Only Nightly and DevEdition are official supported. Other versions may work but are not explicitly supported."
|
1667
1665
|
},
|
1668
1666
|
{
|
1669
1667
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/1877106",
|
1670
1668
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/1877106/assets",
|
1671
1669
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/1877106/assets{?name,label}",
|
1672
1670
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.4.0",
|
1673
1671
|
"id": 1877106,
|
1674
1672
|
"tag_name": "v0.4.0",
|
1675
1673
|
"target_commitish": "master",
|
1676
1674
|
"name": "v0.4.0",
|
1677
1675
|
"draft": false,
|
1678
1676
|
"author": {
|
1679
1677
|
"login": "AutomatedTester",
|
1680
1678
|
"id": 128518,
|
1681
1679
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1682
1680
|
"gravatar_id": "",
|
1683
1681
|
"url": "https://api.github.com/users/AutomatedTester",
|
1684
1682
|
"html_url": "https://github.com/AutomatedTester",
|
1685
1683
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1686
1684
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1687
1685
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1688
1686
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1689
1687
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1690
1688
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1691
1689
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1692
1690
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1693
1691
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1694
1692
|
"type": "User",
|
1695
1693
|
"site_admin": false
|
1696
1694
|
},
|
1697
1695
|
"prerelease": true,
|
1698
1696
|
"created_at": "2015-09-28T13:37:28Z",
|
1699
1697
|
"published_at": "2015-09-28T13:40:40Z",
|
1700
1698
|
"assets": [
|
1701
1699
|
{
|
1702
1700
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/900376",
|
1703
1701
|
"id": 900376,
|
1704
1702
|
"name": "wires-0.4.0-linux64.gz",
|
1705
1703
|
"label": null,
|
1706
1704
|
"uploader": {
|
1707
1705
|
"login": "jgraham",
|
1708
1706
|
"id": 294864,
|
1709
1707
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1710
1708
|
"gravatar_id": "",
|
1711
1709
|
"url": "https://api.github.com/users/jgraham",
|
1712
1710
|
"html_url": "https://github.com/jgraham",
|
1713
1711
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1714
1712
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1715
1713
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1716
1714
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1717
1715
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1718
1716
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1719
1717
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1720
1718
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1721
1719
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1722
1720
|
"type": "User",
|
1723
1721
|
"site_admin": false
|
1724
1722
|
},
|
1725
1723
|
"content_type": "application/gzip",
|
1726
1724
|
"state": "uploaded",
|
1727
1725
|
"size": 843927,
|
1728
1726
|
"download_count": 109,
|
1729
1727
|
"created_at": "2015-09-28T21:08:49Z",
|
1730
1728
|
"updated_at": "2015-09-28T21:08:50Z",
|
1731
1729
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.0/wires-0.4.0-linux64.gz"
|
1732
1730
|
},
|
1733
1731
|
{
|
1734
1732
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/899232",
|
1735
1733
|
"id": 899232,
|
1736
1734
|
"name": "wires-0.4.0-osx.gz",
|
1737
1735
|
"label": null,
|
1738
1736
|
"uploader": {
|
1739
1737
|
"login": "AutomatedTester",
|
1740
1738
|
"id": 128518,
|
1741
1739
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1742
1740
|
"gravatar_id": "",
|
1743
1741
|
"url": "https://api.github.com/users/AutomatedTester",
|
1744
1742
|
"html_url": "https://github.com/AutomatedTester",
|
1745
1743
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1746
1744
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1747
1745
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1748
1746
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1749
1747
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1750
1748
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1751
1749
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1752
1750
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1753
1751
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1754
1752
|
"type": "User",
|
1755
1753
|
"site_admin": false
|
1756
1754
|
},
|
1757
1755
|
"content_type": "application/x-gzip",
|
1758
1756
|
"state": "uploaded",
|
1759
1757
|
"size": 787307,
|
1760
1758
|
"download_count": 22,
|
1761
1759
|
"created_at": "2015-09-28T13:40:11Z",
|
1762
1760
|
"updated_at": "2015-09-28T13:40:24Z",
|
1763
1761
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.0/wires-0.4.0-osx.gz"
|
1764
1762
|
},
|
1765
1763
|
{
|
1766
1764
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/899560",
|
1767
1765
|
"id": 899560,
|
1768
1766
|
"name": "wires-0.4.0-win.zip",
|
1769
1767
|
"label": null,
|
1770
1768
|
"uploader": {
|
1771
1769
|
"login": "AutomatedTester",
|
1772
1770
|
"id": 128518,
|
1773
1771
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1774
1772
|
"gravatar_id": "",
|
1775
1773
|
"url": "https://api.github.com/users/AutomatedTester",
|
1776
1774
|
"html_url": "https://github.com/AutomatedTester",
|
1777
1775
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1778
1776
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1779
1777
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1780
1778
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1781
1779
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1782
1780
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1783
1781
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1784
1782
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1785
1783
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1786
1784
|
"type": "User",
|
1787
1785
|
"site_admin": false
|
1788
1786
|
},
|
1789
1787
|
"content_type": "application/x-zip-compressed",
|
1790
1788
|
"state": "uploaded",
|
1791
1789
|
"size": 1885721,
|
1792
1790
|
"download_count": 60,
|
1793
1791
|
"created_at": "2015-09-28T15:52:45Z",
|
1794
1792
|
"updated_at": "2015-09-28T15:53:43Z",
|
1795
1793
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.4.0/wires-0.4.0-win.zip"
|
1796
1794
|
}
|
1797
1795
|
],
|
1798
1796
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.4.0",
|
1799
1797
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.4.0",
|
1800
1798
|
"body": "Only Nightly and DevEdition are official supported. Other versions may work but are not explicitly supported."
|
1801
1799
|
},
|
1802
1800
|
{
|
1803
1801
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/1578347",
|
1804
1802
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/1578347/assets",
|
1805
1803
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/1578347/assets{?name,label}",
|
1806
1804
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/0.3.0",
|
1807
1805
|
"id": 1578347,
|
1808
1806
|
"tag_name": "0.3.0",
|
1809
1807
|
"target_commitish": "master",
|
1810
1808
|
"name": "v0.3.0",
|
1811
1809
|
"draft": false,
|
1812
1810
|
"author": {
|
1813
1811
|
"login": "jgraham",
|
1814
1812
|
"id": 294864,
|
1815
1813
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1816
1814
|
"gravatar_id": "",
|
1817
1815
|
"url": "https://api.github.com/users/jgraham",
|
1818
1816
|
"html_url": "https://github.com/jgraham",
|
1819
1817
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1820
1818
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1821
1819
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1822
1820
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1823
1821
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1824
1822
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1825
1823
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1826
1824
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1827
1825
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1828
1826
|
"type": "User",
|
1829
1827
|
"site_admin": false
|
1830
1828
|
},
|
1831
1829
|
"prerelease": true,
|
1832
1830
|
"created_at": "2015-07-23T20:17:16Z",
|
1833
1831
|
"published_at": "2015-07-23T20:19:51Z",
|
1834
1832
|
"assets": [
|
1835
1833
|
{
|
1836
1834
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/740810",
|
1837
1835
|
"id": 740810,
|
1838
1836
|
"name": "wires-0.3.0-linux64.gz",
|
1839
1837
|
"label": null,
|
1840
1838
|
"uploader": {
|
1841
1839
|
"login": "jgraham",
|
1842
1840
|
"id": 294864,
|
1843
1841
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1844
1842
|
"gravatar_id": "",
|
1845
1843
|
"url": "https://api.github.com/users/jgraham",
|
1846
1844
|
"html_url": "https://github.com/jgraham",
|
1847
1845
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1848
1846
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1849
1847
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1850
1848
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1851
1849
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1852
1850
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1853
1851
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1854
1852
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1855
1853
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1856
1854
|
"type": "User",
|
1857
1855
|
"site_admin": false
|
1858
1856
|
},
|
1859
1857
|
"content_type": "application/gzip",
|
1860
1858
|
"state": "uploaded",
|
1861
1859
|
"size": 889796,
|
1862
1860
|
"download_count": 572,
|
1863
1861
|
"created_at": "2015-07-23T20:19:46Z",
|
1864
1862
|
"updated_at": "2015-07-23T20:19:48Z",
|
1865
1863
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/0.3.0/wires-0.3.0-linux64.gz"
|
1866
1864
|
},
|
1867
1865
|
{
|
1868
1866
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/741204",
|
1869
1867
|
"id": 741204,
|
1870
1868
|
"name": "wires-0.3.0-osx.tar.gz",
|
1871
1869
|
"label": null,
|
1872
1870
|
"uploader": {
|
1873
1871
|
"login": "AutomatedTester",
|
1874
1872
|
"id": 128518,
|
1875
1873
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1876
1874
|
"gravatar_id": "",
|
1877
1875
|
"url": "https://api.github.com/users/AutomatedTester",
|
1878
1876
|
"html_url": "https://github.com/AutomatedTester",
|
1879
1877
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1880
1878
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1881
1879
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1882
1880
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1883
1881
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1884
1882
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1885
1883
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1886
1884
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1887
1885
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1888
1886
|
"type": "User",
|
1889
1887
|
"site_admin": false
|
1890
1888
|
},
|
1891
1889
|
"content_type": "application/x-gzip",
|
1892
1890
|
"state": "uploaded",
|
1893
1891
|
"size": 811561,
|
1894
1892
|
"download_count": 377,
|
1895
1893
|
"created_at": "2015-07-24T00:12:26Z",
|
1896
1894
|
"updated_at": "2015-07-24T00:12:40Z",
|
1897
1895
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/0.3.0/wires-0.3.0-osx.tar.gz"
|
1898
1896
|
},
|
1899
1897
|
{
|
1900
1898
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/742213",
|
1901
1899
|
"id": 742213,
|
1902
1900
|
"name": "wires-0.3.0-windows.zip",
|
1903
1901
|
"label": null,
|
1904
1902
|
"uploader": {
|
1905
1903
|
"login": "AutomatedTester",
|
1906
1904
|
"id": 128518,
|
1907
1905
|
"avatar_url": "https://avatars.githubusercontent.com/u/128518?v=3",
|
1908
1906
|
"gravatar_id": "",
|
1909
1907
|
"url": "https://api.github.com/users/AutomatedTester",
|
1910
1908
|
"html_url": "https://github.com/AutomatedTester",
|
1911
1909
|
"followers_url": "https://api.github.com/users/AutomatedTester/followers",
|
1912
1910
|
"following_url": "https://api.github.com/users/AutomatedTester/following{/other_user}",
|
1913
1911
|
"gists_url": "https://api.github.com/users/AutomatedTester/gists{/gist_id}",
|
1914
1912
|
"starred_url": "https://api.github.com/users/AutomatedTester/starred{/owner}{/repo}",
|
1915
1913
|
"subscriptions_url": "https://api.github.com/users/AutomatedTester/subscriptions",
|
1916
1914
|
"organizations_url": "https://api.github.com/users/AutomatedTester/orgs",
|
1917
1915
|
"repos_url": "https://api.github.com/users/AutomatedTester/repos",
|
1918
1916
|
"events_url": "https://api.github.com/users/AutomatedTester/events{/privacy}",
|
1919
1917
|
"received_events_url": "https://api.github.com/users/AutomatedTester/received_events",
|
1920
1918
|
"type": "User",
|
1921
1919
|
"site_admin": false
|
1922
1920
|
},
|
1923
1921
|
"content_type": "application/x-zip-compressed",
|
1924
1922
|
"state": "uploaded",
|
1925
1923
|
"size": 1898055,
|
1926
1924
|
"download_count": 2861,
|
1927
1925
|
"created_at": "2015-07-24T13:05:00Z",
|
1928
1926
|
"updated_at": "2015-07-24T13:05:43Z",
|
1929
1927
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/0.3.0/wires-0.3.0-windows.zip"
|
1930
1928
|
}
|
1931
1929
|
],
|
1932
1930
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/0.3.0",
|
1933
1931
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/0.3.0",
|
1934
1932
|
"body": ""
|
1935
1933
|
},
|
1936
1934
|
{
|
1937
1935
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/1319014",
|
1938
1936
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/1319014/assets",
|
1939
1937
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/1319014/assets{?name,label}",
|
1940
1938
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.2.0",
|
1941
1939
|
"id": 1319014,
|
1942
1940
|
"tag_name": "v0.2.0",
|
1943
1941
|
"target_commitish": "master",
|
1944
1942
|
"name": "Wires 0.2.0",
|
1945
1943
|
"draft": false,
|
1946
1944
|
"author": {
|
1947
1945
|
"login": "jgraham",
|
1948
1946
|
"id": 294864,
|
1949
1947
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1950
1948
|
"gravatar_id": "",
|
1951
1949
|
"url": "https://api.github.com/users/jgraham",
|
1952
1950
|
"html_url": "https://github.com/jgraham",
|
1953
1951
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1954
1952
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1955
1953
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1956
1954
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1957
1955
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1958
1956
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1959
1957
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1960
1958
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1961
1959
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1962
1960
|
"type": "User",
|
1963
1961
|
"site_admin": false
|
1964
1962
|
},
|
1965
1963
|
"prerelease": true,
|
1966
1964
|
"created_at": "2015-05-20T17:25:52Z",
|
1967
1965
|
"published_at": "2015-05-20T17:49:14Z",
|
1968
1966
|
"assets": [
|
1969
1967
|
{
|
1970
1968
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/592414",
|
1971
1969
|
"id": 592414,
|
1972
1970
|
"name": "wires-0.2.0-linux64.gz",
|
1973
1971
|
"label": null,
|
1974
1972
|
"uploader": {
|
1975
1973
|
"login": "jgraham",
|
1976
1974
|
"id": 294864,
|
1977
1975
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
1978
1976
|
"gravatar_id": "",
|
1979
1977
|
"url": "https://api.github.com/users/jgraham",
|
1980
1978
|
"html_url": "https://github.com/jgraham",
|
1981
1979
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
1982
1980
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
1983
1981
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
1984
1982
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
1985
1983
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
1986
1984
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
1987
1985
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
1988
1986
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
1989
1987
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
1990
1988
|
"type": "User",
|
1991
1989
|
"site_admin": false
|
1992
1990
|
},
|
1993
1991
|
"content_type": "application/gzip",
|
1994
1992
|
"state": "uploaded",
|
1995
1993
|
"size": 850806,
|
1996
1994
|
"download_count": 40,
|
1997
1995
|
"created_at": "2015-05-20T17:49:08Z",
|
1998
1996
|
"updated_at": "2015-05-20T17:49:10Z",
|
1999
1997
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.2.0/wires-0.2.0-linux64.gz"
|
2000
1998
|
},
|
2001
1999
|
{
|
2002
2000
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/615476",
|
2003
2001
|
"id": 615476,
|
2004
2002
|
"name": "wires-0.2.0-osx.gz",
|
2005
2003
|
"label": null,
|
2006
2004
|
"uploader": {
|
2007
2005
|
"login": "jgraham",
|
2008
2006
|
"id": 294864,
|
2009
2007
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
2010
2008
|
"gravatar_id": "",
|
2011
2009
|
"url": "https://api.github.com/users/jgraham",
|
2012
2010
|
"html_url": "https://github.com/jgraham",
|
2013
2011
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
2014
2012
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
2015
2013
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
2016
2014
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
2017
2015
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
2018
2016
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
2019
2017
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
2020
2018
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
2021
2019
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
2022
2020
|
"type": "User",
|
2023
2021
|
"site_admin": false
|
2024
2022
|
},
|
2025
2023
|
"content_type": "application/x-gzip",
|
2026
2024
|
"state": "uploaded",
|
2027
2025
|
"size": 747617,
|
2028
2026
|
"download_count": 30,
|
2029
2027
|
"created_at": "2015-06-02T15:57:40Z",
|
2030
2028
|
"updated_at": "2015-06-02T15:57:42Z",
|
2031
2029
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.2.0/wires-0.2.0-osx.gz"
|
2032
2030
|
}
|
2033
2031
|
],
|
2034
2032
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.2.0",
|
2035
2033
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.2.0",
|
2036
2034
|
"body": ""
|
2037
2035
|
},
|
2038
2036
|
{
|
2039
2037
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/1145258",
|
2040
2038
|
"assets_url": "https://api.github.com/repos/mozilla/geckodriver/releases/1145258/assets",
|
2041
2039
|
"upload_url": "https://uploads.github.com/repos/mozilla/geckodriver/releases/1145258/assets{?name,label}",
|
2042
2040
|
"html_url": "https://github.com/mozilla/geckodriver/releases/tag/v0.1.0",
|
2043
2041
|
"id": 1145258,
|
2044
2042
|
"tag_name": "v0.1.0",
|
2045
2043
|
"target_commitish": "master",
|
2046
2044
|
"name": "Wires 0.1.0",
|
2047
2045
|
"draft": false,
|
2048
2046
|
"author": {
|
2049
2047
|
"login": "jgraham",
|
2050
2048
|
"id": 294864,
|
2051
2049
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
2052
2050
|
"gravatar_id": "",
|
2053
2051
|
"url": "https://api.github.com/users/jgraham",
|
2054
2052
|
"html_url": "https://github.com/jgraham",
|
2055
2053
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
2056
2054
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
2057
2055
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
2058
2056
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
2059
2057
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
2060
2058
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
2061
2059
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
2062
2060
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
2063
2061
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
2064
2062
|
"type": "User",
|
2065
2063
|
"site_admin": false
|
2066
2064
|
},
|
2067
2065
|
"prerelease": true,
|
2068
2066
|
"created_at": "2015-04-09T15:33:10Z",
|
2069
2067
|
"published_at": "2015-04-09T16:12:05Z",
|
2070
2068
|
"assets": [
|
2071
2069
|
{
|
2072
2070
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/514940",
|
2073
2071
|
"id": 514940,
|
2074
2072
|
"name": "wires-0.1.0-linux64.gz",
|
2075
2073
|
"label": null,
|
2076
2074
|
"uploader": {
|
2077
2075
|
"login": "jgraham",
|
2078
2076
|
"id": 294864,
|
2079
2077
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
2080
2078
|
"gravatar_id": "",
|
2081
2079
|
"url": "https://api.github.com/users/jgraham",
|
2082
2080
|
"html_url": "https://github.com/jgraham",
|
2083
2081
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
2084
2082
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
2085
2083
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
2086
2084
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
2087
2085
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
2088
2086
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
2089
2087
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
2090
2088
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
2091
2089
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
2092
2090
|
"type": "User",
|
2093
2091
|
"site_admin": false
|
2094
2092
|
},
|
2095
2093
|
"content_type": "application/gzip",
|
2096
2094
|
"state": "uploaded",
|
2097
2095
|
"size": 881632,
|
2098
2096
|
"download_count": 12,
|
2099
2097
|
"created_at": "2015-04-09T16:09:07Z",
|
2100
2098
|
"updated_at": "2015-04-09T16:09:09Z",
|
2101
2099
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.1.0/wires-0.1.0-linux64.gz"
|
2102
2100
|
},
|
2103
2101
|
{
|
2104
2102
|
"url": "https://api.github.com/repos/mozilla/geckodriver/releases/assets/514944",
|
2105
2103
|
"id": 514944,
|
2106
2104
|
"name": "wires-0.1.0-osx.gz",
|
2107
2105
|
"label": null,
|
2108
2106
|
"uploader": {
|
2109
2107
|
"login": "jgraham",
|
2110
2108
|
"id": 294864,
|
2111
2109
|
"avatar_url": "https://avatars.githubusercontent.com/u/294864?v=3",
|
2112
2110
|
"gravatar_id": "",
|
2113
2111
|
"url": "https://api.github.com/users/jgraham",
|
2114
2112
|
"html_url": "https://github.com/jgraham",
|
2115
2113
|
"followers_url": "https://api.github.com/users/jgraham/followers",
|
2116
2114
|
"following_url": "https://api.github.com/users/jgraham/following{/other_user}",
|
2117
2115
|
"gists_url": "https://api.github.com/users/jgraham/gists{/gist_id}",
|
2118
2116
|
"starred_url": "https://api.github.com/users/jgraham/starred{/owner}{/repo}",
|
2119
2117
|
"subscriptions_url": "https://api.github.com/users/jgraham/subscriptions",
|
2120
2118
|
"organizations_url": "https://api.github.com/users/jgraham/orgs",
|
2121
2119
|
"repos_url": "https://api.github.com/users/jgraham/repos",
|
2122
2120
|
"events_url": "https://api.github.com/users/jgraham/events{/privacy}",
|
2123
2121
|
"received_events_url": "https://api.github.com/users/jgraham/received_events",
|
2124
2122
|
"type": "User",
|
2125
2123
|
"site_admin": false
|
2126
2124
|
},
|
2127
2125
|
"content_type": "application/x-gzip",
|
2128
2126
|
"state": "uploaded",
|
2129
2127
|
"size": 760754,
|
2130
2128
|
"download_count": 5,
|
2131
2129
|
"created_at": "2015-04-09T16:11:58Z",
|
2132
2130
|
"updated_at": "2015-04-09T16:12:00Z",
|
2133
2131
|
"browser_download_url": "https://github.com/mozilla/geckodriver/releases/download/v0.1.0/wires-0.1.0-osx.gz"
|
2134
2132
|
}
|
2135
2133
|
],
|
2136
2134
|
"tarball_url": "https://api.github.com/repos/mozilla/geckodriver/tarball/v0.1.0",
|
2137
2135
|
"zipball_url": "https://api.github.com/repos/mozilla/geckodriver/zipball/v0.1.0",
|
2138
2136
|
"body": ""
|
2139
2137
|
}
|