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