iedriverserver-helper 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2c794e5ce3f35fe9579e9613179130970ac77047
4
+ data.tar.gz: e4dec4ca9f8cb48290669fea4e75df8fd4996fef
5
+ SHA512:
6
+ metadata.gz: bd924d708db54ab3b9106e85b5ef63ce5a52e9ece2816cafd59f9f19c4c5fb40fd224222ad9aab154362b7eab7dbb760ec7a7b16b63b222583e910b0ebd50c83
7
+ data.tar.gz: 7a805e7491ca52cb8fb509c44d6a0fbcdec96b2fc6b46689f693712ee9a7656b0944b13e9f8b9af1cefcf4b4b957b3ea1c80992180adc1aa01b05c427dbd2445
@@ -0,0 +1,6 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
5
+ chromedriver.log
6
+ .idea/
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
@@ -0,0 +1,56 @@
1
+ Changelog
2
+ ==========
3
+
4
+ 1.0.0 - 2015-06-06
5
+ ----------
6
+
7
+ * Updated gemspec info. Happy 1.0!
8
+
9
+
10
+ 0.0.9 - 2015-06-06
11
+ ----------
12
+
13
+ * No longer require 'curl' or 'wget', or 'unzip' utilities to be installed. You know, for Windows. (Thanks, @elementc!)
14
+ * Support JRuby by removing dependency on native-C-extension gem. (Thanks, Marques Lee!)
15
+
16
+
17
+ 0.0.8 - 2015-01-23
18
+ ----------
19
+
20
+ * Guaranteeing that we get the *latest* version of chromedriver. (#15) (Thanks, @AlexRiedler!)
21
+
22
+
23
+ 0.0.7 - 26 Aug 2014
24
+ ----------
25
+
26
+ * Added support for windows binaries. (Thanks, @elementc!)
27
+
28
+
29
+ 0.0.6 - 26 Aug 2014
30
+ ----------
31
+
32
+ * Fixed to work with new Google download page. #7 (Thanks, @mars!)
33
+
34
+
35
+ 0.0.5 - 15 Aug 2012
36
+ ----------
37
+
38
+ * Fixed support for JRuby on non-Windows platforms. #4 (Thanks, Tim Olsen!)
39
+
40
+
41
+ 0.0.4 - 1 Aug 2012
42
+ ----------
43
+
44
+ * Including `chromedriver-update` to easily allow people to force-upgrade. #3
45
+
46
+
47
+ 0.0.3 - 20 Mar 2012
48
+ ----------
49
+
50
+ * Updated download URL. #2 (Thanks, Alistair Hutchison!)
51
+
52
+
53
+ 0.0.2 - 6 December 2011
54
+ ----------
55
+
56
+ * Birthday!
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in chromedriver-helper.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2011,2012,2013,2014,2015: [Mike Dalessio](http://mike.daless.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.
@@ -0,0 +1,55 @@
1
+ # iedriverserver-helper
2
+
3
+ [![Build status](https://api.travis-ci.org/bergholdt/iedriverserver-helper.svg)](https://travis-ci.org/bergholdt/iedriverserver-helper)
4
+
5
+ Easy installation and use of [InternetExplorerDriver](https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver) selenium webdriver adapter.
6
+
7
+ * [http://github.com/bergholdt/iedriverserver-helper](http://github.com/bergholdt/iedriverserver-helper)
8
+
9
+
10
+ # Description
11
+
12
+ `iedriverserver-helper` installs an executable, `iedriverserver`, in your
13
+ gem path.
14
+
15
+ This script will, if necessary, download the appropriate binary for
16
+ your platform and install it into `~/.iedriverserver-helper`, then exec
17
+ it. Easy peasy!
18
+
19
+
20
+ # Usage
21
+
22
+ If you're using Bundler and Capybara, it's as easy as:
23
+
24
+ # Gemfile
25
+ gem "iedriverserver-helper"
26
+
27
+ then, in your specs:
28
+
29
+ Capybara.register_driver :selenium do |app|
30
+ Capybara::Selenium::Driver.new(app, :browser => :ie)
31
+ end
32
+
33
+
34
+ # Updating iedriverserver
35
+
36
+ If you'd like to force-upgrade to the latest version of iedriverserver,
37
+ run the script `iedriverserver-update` that also comes packaged with
38
+ this gem.
39
+
40
+
41
+ # Support
42
+
43
+ The code lives at
44
+ [http://github.com/bergholdt/iedriverserver-helper](http://github.com/bergholdt/iedriverserver-helper).
45
+ Open a Github Issue, or send a pull request! Thanks! You're the best.
46
+
47
+
48
+ # License
49
+
50
+ MIT licensed, see LICENSE.txt for full details.
51
+
52
+
53
+ # Credit
54
+
55
+ This gem is heavy inspired by http://github.com/flavorjones/chromedriver-helper
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,5 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ require "ie_driver_server/helper"
4
+
5
+ IEDriverServer::Helper.new.run *ARGV
@@ -0,0 +1,5 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ require "ie_driver_server/helper"
4
+
5
+ IEDriverServer::Helper.new.update
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "ie_driver_server/helper/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "iedriverserver-helper"
7
+ s.version = IEDriverServer::Helper::VERSION
8
+ s.authors = ["Rasmus Bergholdt"]
9
+ s.email = ["rasmus.bergholdt@gmail.com"]
10
+ s.homepage = "https://github.com/bergholdt/iedriverserver-helper"
11
+ s.summary = "Easy installation and use of IEDriverServer."
12
+ s.description = "Easy installation and use of IEDriverServer, the IE Browser selenium webdriver adapter."
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", "~> 11.2"
22
+
23
+ s.add_runtime_dependency "nokogiri", "~> 1.6"
24
+ s.add_runtime_dependency "rubyzip"
25
+ end
@@ -0,0 +1,81 @@
1
+ require "ie_driver_server/helper/version"
2
+ require "ie_driver_server/helper/google_code_parser"
3
+ require 'fileutils'
4
+ require 'rbconfig'
5
+ require 'open-uri'
6
+ require 'zip'
7
+
8
+ module IEDriverServer
9
+ class Helper
10
+ BUCKET_URL = 'http://selenium-release.storage.googleapis.com'
11
+
12
+ def run *args
13
+ download
14
+ exec binary_path, *args
15
+ end
16
+
17
+ def update
18
+ download true
19
+ end
20
+
21
+ def download hit_network=false
22
+ return if File.exists?(binary_path) && ! hit_network
23
+ url = download_url
24
+ filename = File.basename url
25
+ FileUtils.mkdir_p install_dir
26
+ Dir.chdir install_dir do
27
+ FileUtils.rm_f filename
28
+ File.open(filename, "wb") do |saved_file|
29
+ URI.parse(url).open("rb") do |read_file|
30
+ saved_file.write(read_file.read)
31
+ end
32
+ end
33
+ raise "Could not download #{url}" unless File.exists? filename
34
+ extract filename
35
+ FileUtils.rm_f filename
36
+ end
37
+ raise "Could not unzip #{filename} to get #{binary_path}" unless File.exists? binary_path
38
+ FileUtils.chmod "ugo+rx", binary_path
39
+ end
40
+
41
+ def remove
42
+ FileUtils.rm binary_path
43
+ end
44
+
45
+ def binary_path
46
+ File.join install_dir, "IEDriverServer.exe"
47
+ end
48
+
49
+ private
50
+
51
+ def extract filename
52
+ Zip::File.open(filename) do |zip_file|
53
+ zip_file.each do |entry|
54
+ FileUtils.rm_f entry.name
55
+ entry.extract(entry.name)
56
+ end
57
+ end
58
+ end
59
+
60
+ def driver_name
61
+ 'IEDriverServer_' + platform
62
+ end
63
+
64
+ def download_url
65
+ GoogleCodeParser.new(driver_name, url: BUCKET_URL).newest_download
66
+ end
67
+
68
+ def install_dir
69
+ File.expand_path File.join(home_dir, ".IEDriverServer-helper", platform)
70
+ end
71
+
72
+ def platform
73
+ !!(RbConfig::CONFIG['arch'] =~ /_64/) ? 'x64' : 'Win32'
74
+ end
75
+
76
+ def home_dir
77
+ ENV['HOME'] || ENV['HOMEPATH']
78
+ end
79
+
80
+ end
81
+ end
@@ -0,0 +1,38 @@
1
+ require 'nokogiri'
2
+ require 'open-uri'
3
+
4
+ module IEDriverServer
5
+ class Helper
6
+ class GoogleCodeParser
7
+
8
+ attr_reader :source, :driver_name, :url
9
+
10
+ def initialize(driver_name, url: , open_uri_provider: OpenURI)
11
+ @driver_name = driver_name
12
+ @url = url
13
+ @source = open_uri_provider.open_uri(url)
14
+ end
15
+
16
+ def downloads
17
+ doc = Nokogiri::XML.parse(source)
18
+ items = doc.css("Contents Key").collect {|k| k.text }
19
+ items.reject! {|k| !(/#{driver_name}_/===k) }
20
+ items.map {|k| "#{url}/#{k}"}
21
+ end
22
+
23
+ def newest_download
24
+ (downloads.sort { |a, b| version_of(a) <=> version_of(b)}).last
25
+ end
26
+
27
+ private
28
+
29
+ def version_of url
30
+ Gem::Version.new grab_version_string_from(url)
31
+ end
32
+
33
+ def grab_version_string_from url
34
+ url.match(/_(\d+\.?\d+\.?\d+)\.zip$/).captures.first
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,5 @@
1
+ module IEDriverServer
2
+ class Helper
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1 @@
1
+ <?xml version='1.0' encoding='UTF-8'?><ListBucketResult xmlns='http://doc.s3.amazonaws.com/2006-03-01'><Name>selenium-release</Name><Prefix></Prefix><Marker></Marker><IsTruncated>false</IsTruncated><Contents><Key>2.39/IEDriverServer_Win32_2.39.0.zip</Key><Generation>1389651460351000</Generation><MetaGeneration>4</MetaGeneration><LastModified>2014-01-13T22:17:40.327Z</LastModified><ETag>"bd4bc2b77a04999148e7fab974336e99"</ETag><Size>836478</Size><Owner/></Contents><Contents><Key>2.39/IEDriverServer_x64_2.39.0.zip</Key><Generation>1389651273362000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:14:33.323Z</LastModified><ETag>"7d19f3d7ffb9cb40fc26cc38885b9160"</ETag><Size>946479</Size><Owner/></Contents><Contents><Key>2.39/selenium-dotnet-2.39.0.zip</Key><Generation>1389651287806000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:14:47.774Z</LastModified><ETag>"e5d82bd497eff0bf3a3990cb746a2680"</ETag><Size>10263239</Size><Owner/></Contents><Contents><Key>2.39/selenium-dotnet-strongnamed-2.39.0.zip</Key><Generation>1389651300568000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:15:00.557Z</LastModified><ETag>"2b8e3938ada2d1b4d9bbf76a7430bbe6"</ETag><Size>7973108</Size><Owner/></Contents><Contents><Key>2.39/selenium-java-2.39.0.zip</Key><Generation>1389651222570000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:13:42.435Z</LastModified><ETag>"0fc6c9fd784fdcfce482878dfa1002e6"</ETag><Size>24502128</Size><Owner/></Contents><Contents><Key>2.39/selenium-server-2.39.0.zip</Key><Generation>1389651450563000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:17:30.509Z</LastModified><ETag>"4adf11c3c5b9310a94ce41ee76fe331d"</ETag><Size>65552312</Size><Owner/></Contents><Contents><Key>2.39/selenium-server-standalone-2.39.0.jar</Key><Generation>1389651272031000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:14:31.988Z</LastModified><ETag>"7c2d1e12c1a9e445193967314fa72d85"</ETag><Size>34603971</Size><Owner/></Contents><Contents><Key>2.40/</Key><Generation>1393275456335000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-02-24T20:57:36.135Z</LastModified><ETag>"d41d8cd98f00b204e9800998ecf8427e"</ETag><Size>0</Size><Owner/></Contents><Contents><Key>2.40/IEDriverServer_Win32_2.40.0.zip</Key><Generation>1393275747841000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:02:27.758Z</LastModified><ETag>"90c495b4bcd5e86c0a2e5c5c4ac16369"</ETag><Size>847357</Size><Owner/></Contents><Contents><Key>2.40/IEDriverServer_x64_2.40.0.zip</Key><Generation>1393275749634000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:02:29.563Z</LastModified><ETag>"7769f840dc566657efe0a1268ec24904"</ETag><Size>954035</Size><Owner/></Contents><Contents><Key>2.40/selenium-dotnet-2.40.0.zip</Key><Generation>1393275764323000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:02:44.181Z</LastModified><ETag>"88fda538060fab5cf28cc6a90deeabdc"</ETag><Size>10569695</Size><Owner/></Contents><Contents><Key>2.40/selenium-dotnet-strongnamed-2.40.0.zip</Key><Generation>1393275775115000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:02:55.085Z</LastModified><ETag>"2882e8f3fc6a753c282118fe75a08ce2"</ETag><Size>8186128</Size><Owner/></Contents><Contents><Key>2.40/selenium-java-2.40.0.zip</Key><Generation>1393275805096000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:03:24.715Z</LastModified><ETag>"36552f3a2eeacf74b32425288aea82d3"</ETag><Size>24024159</Size><Owner/></Contents><Contents><Key>2.40/selenium-server-2.40.0.zip</Key><Generation>1393275895609000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:04:55.601Z</LastModified><ETag>"06d33598488f9a76a32d67c42966f47d"</ETag><Size>65442635</Size><Owner/></Contents><Contents><Key>2.40/selenium-server-standalone-2.40.0.jar</Key><Generation>1393275943933000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-02-24T21:05:43.903Z</LastModified><ETag>"b6df2212bf7512414c569dcb0fd0a171"</ETag><Size>34561710</Size><Owner/></Contents><Contents><Key>2.41/IEDriverServer_Win32_2.41.0.zip</Key><Generation>1395955776889000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:29:36.889Z</LastModified><ETag>"c676276cc4b5bca71b3872dabdd3af7f"</ETag><Size>847387</Size><Owner/></Contents><Contents><Key>2.41/IEDriverServer_x64_2.41.0.zip</Key><Generation>1395955778952000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:29:38.952Z</LastModified><ETag>"4acb8e7be4a8015c31c00d02e6f05a51"</ETag><Size>953293</Size><Owner/></Contents><Contents><Key>2.41/selenium-dotnet-2.41.0.zip</Key><Generation>1395955796718000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:29:56.717Z</LastModified><ETag>"68635da247aa1a9e3586cba447ecddac"</ETag><Size>10553191</Size><Owner/></Contents><Contents><Key>2.41/selenium-dotnet-strongnamed-2.41.0.zip</Key><Generation>1395955786909000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:29:46.909Z</LastModified><ETag>"808c981801499ea8697bfe568558bfff"</ETag><Size>8183099</Size><Owner/></Contents><Contents><Key>2.41/selenium-java-2.41.0.zip</Key><Generation>1395955715679000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:28:35.679Z</LastModified><ETag>"4b73c40305138ace32e2379a4d4d62c2"</ETag><Size>24027815</Size><Owner/></Contents><Contents><Key>2.41/selenium-server-2.41.0.zip</Key><Generation>1395955774857000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:29:34.857Z</LastModified><ETag>"f7ffc1c2ae6e72dc1bafe5c62467634e"</ETag><Size>65451053</Size><Owner/></Contents><Contents><Key>2.41/selenium-server-standalone-2.41.0.jar</Key><Generation>1395955550351000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-03-27T21:25:50.351Z</LastModified><ETag>"00042f9912c55a6191d7b3fe01239135"</ETag><Size>34564662</Size><Owner/></Contents><Contents><Key>2.42/IEDriverServer_Win32_2.42.0.zip</Key><Generation>1401207468930000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-27T16:17:48.930Z</LastModified><ETag>"c1698989012a8f87b61905445fb7a07f"</ETag><Size>828671</Size><Owner/></Contents><Contents><Key>2.42/IEDriverServer_x64_2.42.0.zip</Key><Generation>1401207468006000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-27T16:17:48.005Z</LastModified><ETag>"3401f66ad84a58f1210c485c41bf3e92"</ETag><Size>932617</Size><Owner/></Contents><Contents><Key>2.42/selenium-dotnet-2.42.0.zip</Key><Generation>1401207466741000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-27T16:17:46.741Z</LastModified><ETag>"3d116682c1b90893df44d685c937ebf2"</ETag><Size>10717020</Size><Owner/></Contents><Contents><Key>2.42/selenium-dotnet-strongnamed-2.42.0.zip</Key><Generation>1401207378479000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-27T16:16:18.478Z</LastModified><ETag>"e55876c43bae82069ed78ea832f19a13"</ETag><Size>8398809</Size><Owner/></Contents><Contents><Key>2.42/selenium-java-2.42.0.zip</Key><Generation>1400790620379000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-22T20:30:20.379Z</LastModified><ETag>"bfcf8d9e36527df062e7e25ba5149828"</ETag><Size>24718528</Size><Owner/></Contents><Contents><Key>2.42/selenium-java-2.42.1.zip</Key><Generation>1401380372806000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-29T16:19:32.806Z</LastModified><ETag>"ee1f4b0d5694c00aaf61418e1c91edb6"</ETag><Size>24719003</Size><Owner/></Contents><Contents><Key>2.42/selenium-java-2.42.2.zip</Key><Generation>1401818055978000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-06-03T17:54:15.977Z</LastModified><ETag>"fca86bfb72a2d2bba73d347d5d79c9ed"</ETag><Size>24718924</Size><Owner/></Contents><Contents><Key>2.42/selenium-server-2.42.0.zip</Key><Generation>1400790628249000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-22T20:30:28.249Z</LastModified><ETag>"3689cbdd67aecbb72524ead8727d69da"</ETag><Size>65936608</Size><Owner/></Contents><Contents><Key>2.42/selenium-server-2.42.1.zip</Key><Generation>1401380380473000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-29T16:19:40.472Z</LastModified><ETag>"305e27647fe82b3997870661195424b0"</ETag><Size>65937502</Size><Owner/></Contents><Contents><Key>2.42/selenium-server-2.42.2.zip</Key><Generation>1401818048595000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-06-03T17:54:08.594Z</LastModified><ETag>"dee5d14023e66e856c21cd3219f58a8c"</ETag><Size>65937565</Size><Owner/></Contents><Contents><Key>2.42/selenium-server-standalone-2.42.0.jar</Key><Generation>1400790616797000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-22T20:30:16.797Z</LastModified><ETag>"0a67614b436e525dccc0e6b972333bb3"</ETag><Size>34823093</Size><Owner/></Contents><Contents><Key>2.42/selenium-server-standalone-2.42.1.jar</Key><Generation>1401380385464000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-05-29T16:19:45.464Z</LastModified><ETag>"5359263800a6ca39db5fe7fc04c6f955"</ETag><Size>34823352</Size><Owner/></Contents><Contents><Key>2.42/selenium-server-standalone-2.42.2.jar</Key><Generation>1401818052575000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-06-03T17:54:12.574Z</LastModified><ETag>"e357c6c0a757311b0da571abd7386cac"</ETag><Size>34823352</Size><Owner/></Contents><Contents><Key>2.43/</Key><Generation>1410297711522000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-09T21:21:51.522Z</LastModified><ETag>"d41d8cd98f00b204e9800998ecf8427e"</ETag><Size>0</Size><Owner/></Contents><Contents><Key>2.43/IEDriverServer_Win32_2.43.0.zip</Key><Generation>1410303583230000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-09T22:59:43.230Z</LastModified><ETag>"ea66ca4650e992563a5d9953845cced4"</ETag><Size>848613</Size><Owner/></Contents><Contents><Key>2.43/IEDriverServer_x64_2.43.0.zip</Key><Generation>1410303584504000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-09T22:59:44.504Z</LastModified><ETag>"93bcebb71836238ee8f07b34a097957a"</ETag><Size>956463</Size><Owner/></Contents><Contents><Key>2.43/selenium-dotnet-2.43.0.zip</Key><Generation>1410303592142000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-09T22:59:52.142Z</LastModified><ETag>"e259d1b03fae6bd6ac92240762b2db78"</ETag><Size>10827845</Size><Owner/></Contents><Contents><Key>2.43/selenium-dotnet-2.43.1.zip</Key><Generation>1410363917507000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-10T15:45:17.507Z</LastModified><ETag>"7ae5696c1d8c9d6c1cb2328ea00f949d"</ETag><Size>10826432</Size><Owner/></Contents><Contents><Key>2.43/selenium-dotnet-strongnamed-2.43.0.zip</Key><Generation>1410303597657000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-09T22:59:57.656Z</LastModified><ETag>"99a7bd4e768dc610e972110e52a88785"</ETag><Size>8522136</Size><Owner/></Contents><Contents><Key>2.43/selenium-dotnet-strongnamed-2.43.1.zip</Key><Generation>1410363931035000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-10T15:45:31.035Z</LastModified><ETag>"def97d3025cf04e49d81fa87563de600"</ETag><Size>8521824</Size><Owner/></Contents><Contents><Key>2.43/selenium-java-2.43.0.zip</Key><Generation>1410297846078000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-09-09T21:24:06.077Z</LastModified><ETag>"a95de6755ba65701e9a1be3213a0e39f"</ETag><Size>24808348</Size><Owner/></Contents><Contents><Key>2.43/selenium-java-2.43.1.zip</Key><Generation>1410367238755000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-10T16:40:38.755Z</LastModified><ETag>"7c52aedf62c32ee1e149b860bd986463"</ETag><Size>24808227</Size><Owner/></Contents><Contents><Key>2.43/selenium-server-2.43.0.zip</Key><Generation>1410297856315000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-09-09T21:24:16.315Z</LastModified><ETag>"44c3497421b8467e8209430e551fe79e"</ETag><Size>65595124</Size><Owner/></Contents><Contents><Key>2.43/selenium-server-2.43.1.zip</Key><Generation>1410367202969000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-10T16:40:02.968Z</LastModified><ETag>"36b667413b2f35a0f911d560717fff3a"</ETag><Size>65595145</Size><Owner/></Contents><Contents><Key>2.43/selenium-server-standalone-2.43.0.jar</Key><Generation>1410297896124000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-09-09T21:24:56.123Z</LastModified><ETag>"eead2ce13843c4c12609bf8b5e4a79b5"</ETag><Size>34932130</Size><Owner/></Contents><Contents><Key>2.43/selenium-server-standalone-2.43.1.jar</Key><Generation>1410367129025000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-09-10T16:38:49.025Z</LastModified><ETag>"6b95d6fe34b69f2ec180bf70e040f182"</ETag><Size>34932047</Size><Owner/></Contents><Contents><Key>2.44/IEDriverServer_Win32_2.44.0.zip</Key><Generation>1414099419682000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T21:23:39.682Z</LastModified><ETag>"1d177d00dd1267556520973516491081"</ETag><Size>837259</Size><Owner/></Contents><Contents><Key>2.44/IEDriverServer_x64_2.44.0.zip</Key><Generation>1414099418401000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T21:23:38.401Z</LastModified><ETag>"a7335ef03f8aec1a6d5de219ad4689d6"</ETag><Size>938552</Size><Owner/></Contents><Contents><Key>2.44/selenium-dotnet-2.44.0.zip</Key><Generation>1414099417067000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T21:23:37.066Z</LastModified><ETag>"93b4eeb12fe78b538f264c7edcd4aee4"</ETag><Size>10826934</Size><Owner/></Contents><Contents><Key>2.44/selenium-dotnet-strongnamed-2.44.0.zip</Key><Generation>1414099411488000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T21:23:31.488Z</LastModified><ETag>"1fe340569f274796a66e9870f5dc0c9e"</ETag><Size>8522043</Size><Owner/></Contents><Contents><Key>2.44/selenium-java-2.44.0.zip</Key><Generation>1414094843049000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T20:07:23.049Z</LastModified><ETag>"4064c33f4aa3163d00adcab065184847"</ETag><Size>24972017</Size><Owner/></Contents><Contents><Key>2.44/selenium-server-2.44.0.zip</Key><Generation>1414094847025000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T20:07:27.025Z</LastModified><ETag>"32a9c19529390d6f432fdfee48a13dc9"</ETag><Size>33629243</Size><Owner/></Contents><Contents><Key>2.44/selenium-server-standalone-2.44.0.jar</Key><Generation>1414094850765000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2014-10-23T20:07:30.765Z</LastModified><ETag>"6514fd7c3869e2699f8c2a16868da336"</ETag><Size>35169724</Size><Owner/></Contents><Contents><Key>2.45/IEDriverServer_Win32_2.45.0.zip</Key><Generation>1425061088253000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T18:18:08.253Z</LastModified><ETag>"dde210e04e5c1b0d6019fd8a1199df18"</ETag><Size>845190</Size><Owner/></Contents><Contents><Key>2.45/IEDriverServer_x64_2.45.0.zip</Key><Generation>1425061089687000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T18:18:09.687Z</LastModified><ETag>"fc9e083200dfdc35d837a586927a1f86"</ETag><Size>947768</Size><Owner/></Contents><Contents><Key>2.45/SafariDriver.safariextz</Key><Generation>1424995659647000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T00:07:39.647Z</LastModified><ETag>"8f6c341f8fb6a8b89801ae532c68e1b1"</ETag><Size>222394</Size><Owner/></Contents><Contents><Key>2.45/selenium-dotnet-2.45.0.zip</Key><Generation>1425061087348000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T18:18:07.348Z</LastModified><ETag>"9b172ad6a96cf497867be0efbe9acac8"</ETag><Size>10620606</Size><Owner/></Contents><Contents><Key>2.45/selenium-dotnet-strongnamed-2.45.0.zip</Key><Generation>1425061075724000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T18:17:55.724Z</LastModified><ETag>"ff51ed60c1b04255649f6f28e13e4207"</ETag><Size>8256185</Size><Owner/></Contents><Contents><Key>2.45/selenium-java-2.45.0.zip</Key><Generation>1425597139747000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-03-05T23:12:19.747Z</LastModified><ETag>"5adf84e7eb9f7b32e1b6a1d59cb93769"</ETag><Size>25065632</Size><Owner/></Contents><Contents><Key>2.45/selenium-server-2.45.0.zip</Key><Generation>1424995656643000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T00:07:36.643Z</LastModified><ETag>"5034f099c70533fbac38f0c246101b9b"</ETag><Size>33728675</Size><Owner/></Contents><Contents><Key>2.45/selenium-server-standalone-2.45.0.jar</Key><Generation>1424995653143000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-02-27T00:07:33.143Z</LastModified><ETag>"a62db4c36e230a936455aaacda9340a8"</ETag><Size>35269077</Size><Owner/></Contents><Contents><Key>2.46/IEDriverServer_Win32_2.46.0.zip</Key><Generation>1433436751588000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:52:31.587Z</LastModified><ETag>"93616ec22088413ff9d8dec978d94474"</ETag><Size>845301</Size><Owner/></Contents><Contents><Key>2.46/IEDriverServer_x64_2.46.0.zip</Key><Generation>1433436753199000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:52:33.198Z</LastModified><ETag>"8ec1fa632d2d5033627340ab5a0b5ba8"</ETag><Size>949507</Size><Owner/></Contents><Contents><Key>2.46/selenium-dotnet-2.46.0.zip</Key><Generation>1433436749761000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:52:29.760Z</LastModified><ETag>"b30935983b25f71220f04e7bf8ec8f91"</ETag><Size>10741277</Size><Owner/></Contents><Contents><Key>2.46/selenium-dotnet-strongnamed-2.46.0.zip</Key><Generation>1433436733747000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:52:13.747Z</LastModified><ETag>"986d662e5df7e836dae5dbb5481163e9"</ETag><Size>8282587</Size><Owner/></Contents><Contents><Key>2.46/selenium-java-2.46.0.zip</Key><Generation>1433436793674000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:53:13.673Z</LastModified><ETag>"f00645a5a25145891d092628b352766f"</ETag><Size>21577432</Size><Owner/></Contents><Contents><Key>2.46/selenium-server-2.46.0.zip</Key><Generation>1433436851227000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:54:11.226Z</LastModified><ETag>"03c4c4564bbd27188537fbe75dfb30a6"</ETag><Size>30264668</Size><Owner/></Contents><Contents><Key>2.46/selenium-server-standalone-2.46.0.jar</Key><Generation>1433436909172000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-06-04T16:55:09.171Z</LastModified><ETag>"0e9f78edf114943e4f0288bf9c2157f8"</ETag><Size>31750379</Size><Owner/></Contents><Contents><Key>2.47/IEDriverServer_Win32_2.47.0.zip</Key><Generation>1438211419905000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:10:19.905Z</LastModified><ETag>"8d737f709699cc194af303660e47dfc4"</ETag><Size>853121</Size><Owner/></Contents><Contents><Key>2.47/IEDriverServer_x64_2.47.0.zip</Key><Generation>1438211421513000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:10:21.513Z</LastModified><ETag>"54348baafb1f1bebc1480e42aa0b53f4"</ETag><Size>957549</Size><Owner/></Contents><Contents><Key>2.47/selenium-dotnet-2.47.0.zip</Key><Generation>1438211418677000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:10:18.676Z</LastModified><ETag>"5ec0d6d3b2af1b9c979c89e85631682a"</ETag><Size>9986793</Size><Owner/></Contents><Contents><Key>2.47/selenium-dotnet-strongnamed-2.47.0.zip</Key><Generation>1438211397718000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:09:57.717Z</LastModified><ETag>"81568794db745688c02b414129eeca24"</ETag><Size>7477134</Size><Owner/></Contents><Contents><Key>2.47/selenium-java-2.47.0.zip</Key><Generation>1438211462757000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:11:02.756Z</LastModified><ETag>"60b24204e7167403144dfd18d7f7bb0b"</ETag><Size>21596730</Size><Owner/></Contents><Contents><Key>2.47/selenium-java-2.47.1.zip</Key><Generation>1438226432178000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-30T03:20:32.177Z</LastModified><ETag>"5ec584d0455fc95773b3964dc72c3577"</ETag><Size>21604383</Size><Owner/></Contents><Contents><Key>2.47/selenium-server-2.47.0.zip</Key><Generation>1438211522954000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:12:02.953Z</LastModified><ETag>"8265c8d70464cdb08e7ba1693ada488a"</ETag><Size>30293749</Size><Owner/></Contents><Contents><Key>2.47/selenium-server-2.47.1.zip</Key><Generation>1438226706672000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-30T03:25:06.667Z</LastModified><ETag>"746a8bfc47fdacaabf8716e0743550a6"</ETag><Size>30301951</Size><Owner/></Contents><Contents><Key>2.47/selenium-server-standalone-2.47.0.jar</Key><Generation>1438211585687000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-29T23:13:05.687Z</LastModified><ETag>"9b19d1b9b902b3d74ec0ed56c5be05cf"</ETag><Size>31781371</Size><Owner/></Contents><Contents><Key>2.47/selenium-server-standalone-2.47.1.jar</Key><Generation>1438227003456000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-07-30T03:30:03.455Z</LastModified><ETag>"e6cb10b8f0f353c6ca4a8f62fb5cb472"</ETag><Size>31785433</Size><Owner/></Contents><Contents><Key>2.48/IEDriverServer_Win32_2.48.0.zip</Key><Generation>1444235002023000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:23:22.022Z</LastModified><ETag>"f7b8b07393e31d05ab360a06f51b482a"</ETag><Size>992193</Size><Owner/></Contents><Contents><Key>2.48/IEDriverServer_x64_2.48.0.zip</Key><Generation>1444235002774000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:23:22.773Z</LastModified><ETag>"39a13f8f7feacb83e55357fb4d1a3326"</ETag><Size>1146583</Size><Owner/></Contents><Contents><Key>2.48/SafariDriver.safariextz</Key><Generation>1444679070595000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-12T19:44:30.594Z</LastModified><ETag>"7d2c13b917ee19d62eefe77dff24c1c1"</ETag><Size>234735</Size><Owner/></Contents><Contents><Key>2.48/selenium-dotnet-2.48.0.zip</Key><Generation>1444235007983000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:23:27.982Z</LastModified><ETag>"cb8518a1f33fc6b74b94c040e37802bb"</ETag><Size>6281664</Size><Owner/></Contents><Contents><Key>2.48/selenium-dotnet-2.48.1.zip</Key><Generation>1446666680827000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-11-04T19:51:20.825Z</LastModified><ETag>"4f59a62f39133bc76aadf1bec1f9d0e8"</ETag><Size>6358548</Size><Owner/></Contents><Contents><Key>2.48/selenium-dotnet-2.48.2.zip</Key><Generation>1447886934313000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-11-18T22:48:54.312Z</LastModified><ETag>"dc4009f358705dac0a08b3da2d3f998f"</ETag><Size>6359489</Size><Owner/></Contents><Contents><Key>2.48/selenium-dotnet-strongnamed-2.48.0.zip</Key><Generation>1444235009978000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:23:29.977Z</LastModified><ETag>"f9b7af41463e860bb015004fb550d9b5"</ETag><Size>3954579</Size><Owner/></Contents><Contents><Key>2.48/selenium-dotnet-strongnamed-2.48.1.zip</Key><Generation>1446666677446000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-11-04T19:51:17.445Z</LastModified><ETag>"813a6bbc6649090c27b229dfff92c57d"</ETag><Size>3982075</Size><Owner/></Contents><Contents><Key>2.48/selenium-dotnet-strongnamed-2.48.2.zip</Key><Generation>1447886920269000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-11-18T22:48:40.268Z</LastModified><ETag>"d4d33976dd9ddefcbd745e0167c55f58"</ETag><Size>3983054</Size><Owner/></Contents><Contents><Key>2.48/selenium-java-2.48.0.zip</Key><Generation>1444234871976000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:21:11.975Z</LastModified><ETag>"bdcf0d2ab89684f58e668c8fda335b55"</ETag><Size>22337626</Size><Owner/></Contents><Contents><Key>2.48/selenium-java-2.48.1.zip</Key><Generation>1444338813566000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-08T21:13:33.565Z</LastModified><ETag>"c624021666b29686ff51402a63c8245f"</ETag><Size>22418603</Size><Owner/></Contents><Contents><Key>2.48/selenium-java-2.48.2.zip</Key><Generation>1444420885761000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-09T20:01:25.760Z</LastModified><ETag>"43cf75e73c33b5f1f51abf70f1522128"</ETag><Size>22424368</Size><Owner/></Contents><Contents><Key>2.48/selenium-server-2.48.0.zip</Key><Generation>1444234875163000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:21:15.162Z</LastModified><ETag>"7e6de38d2e8a755dc0276ecfc239e09d"</ETag><Size>27923714</Size><Owner/></Contents><Contents><Key>2.48/selenium-server-2.48.1.zip</Key><Generation>1444338816631000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-08T21:13:36.630Z</LastModified><ETag>"079e3de5a8958d69beed9a584bc9d9dc"</ETag><Size>28011043</Size><Owner/></Contents><Contents><Key>2.48/selenium-server-2.48.2.zip</Key><Generation>1444420907092000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-09T20:01:47.091Z</LastModified><ETag>"9cb0fe2fd1ddb12e020c6a3c10c49c71"</ETag><Size>28017047</Size><Owner/></Contents><Contents><Key>2.48/selenium-server-standalone-2.48.0.jar</Key><Generation>1444234878386000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-07T16:21:18.385Z</LastModified><ETag>"3b49708f93dc31630b58670b5dde3e91"</ETag><Size>30782545</Size><Owner/></Contents><Contents><Key>2.48/selenium-server-standalone-2.48.1.jar</Key><Generation>1444338821854000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-08T21:13:41.853Z</LastModified><ETag>"8a91476bf8563b61836aafb76c5c55a4"</ETag><Size>30872615</Size><Owner/></Contents><Contents><Key>2.48/selenium-server-standalone-2.48.2.jar</Key><Generation>1444420929565000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2015-10-09T20:02:09.565Z</LastModified><ETag>"b2784fc67c149d3c13c83d2108104689"</ETag><Size>30878005</Size><Owner/></Contents><Contents><Key>2.49/IEDriverServer_Win32_2.49.0.zip</Key><Generation>1453222508748000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-19T16:55:08.747Z</LastModified><ETag>"37d9d503afeb9e0771e2c0ebf23df979"</ETag><Size>994647</Size><Owner/></Contents><Contents><Key>2.49/IEDriverServer_x64_2.49.0.zip</Key><Generation>1453222509313000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-19T16:55:09.312Z</LastModified><ETag>"9c66d9f7ca93b1c5e816b1a0aa095ac0"</ETag><Size>1171509</Size><Owner/></Contents><Contents><Key>2.49/selenium-dotnet-2.49.0.zip</Key><Generation>1453222511708000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-19T16:55:11.707Z</LastModified><ETag>"31a5c5fe9b3c88ac4806bdaffd9820be"</ETag><Size>6371984</Size><Owner/></Contents><Contents><Key>2.49/selenium-dotnet-strongnamed-2.49.0.zip</Key><Generation>1453222510301000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-19T16:55:10.300Z</LastModified><ETag>"f8484979f8c5d931201d77a7d8c72a63"</ETag><Size>3986136</Size><Owner/></Contents><Contents><Key>2.49/selenium-java-2.49.0.zip</Key><Generation>1452710658095000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-13T18:44:18.093Z</LastModified><ETag>"71219177ba08b359d14597818fd86bf1"</ETag><Size>22488853</Size><Owner/></Contents><Contents><Key>2.49/selenium-java-2.49.1.zip</Key><Generation>1453397956381000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-21T17:39:16.380Z</LastModified><ETag>"cfd26b6ad762c186de0053d017c40b7b"</ETag><Size>22489075</Size><Owner/></Contents><Contents><Key>2.49/selenium-server-2.49.0.zip</Key><Generation>1452710862960000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-13T18:47:42.959Z</LastModified><ETag>"b0ff793edd4cb790b7814a8cb7b0c0dd"</ETag><Size>28089067</Size><Owner/></Contents><Contents><Key>2.49/selenium-server-2.49.1.zip</Key><Generation>1453397927591000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-21T17:38:47.590Z</LastModified><ETag>"fc94b0244a5a18a5db141ad87371d059"</ETag><Size>28089158</Size><Owner/></Contents><Contents><Key>2.49/selenium-server-standalone-2.49.0.jar</Key><Generation>1452711154972000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-13T18:52:34.971Z</LastModified><ETag>"85dc6a8d661603604cdd6d4e66a39897"</ETag><Size>30947958</Size><Owner/></Contents><Contents><Key>2.49/selenium-server-standalone-2.49.1.jar</Key><Generation>1453397920880000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-21T17:38:40.878Z</LastModified><ETag>"aca2796e98646de73d0102330aee11f4"</ETag><Size>30948363</Size><Owner/></Contents><Contents><Key>2.50/IEDriverServer_Win32_2.50.0.zip</Key><Generation>1453938671451000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T23:51:11.449Z</LastModified><ETag>"cf6850b0ceae8498e1952f6dead9d80b"</ETag><Size>994901</Size><Owner/></Contents><Contents><Key>2.50/IEDriverServer_x64_2.50.0.zip</Key><Generation>1453938672644000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T23:51:12.643Z</LastModified><ETag>"7229088ae632893579004388bb20c5d3"</ETag><Size>1167831</Size><Owner/></Contents><Contents><Key>2.50/selenium-dotnet-2.50.0.zip</Key><Generation>1453938677708000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T23:51:17.706Z</LastModified><ETag>"53c2bfb0545beceba48e7d2dd847f2a2"</ETag><Size>6838097</Size><Owner/></Contents><Contents><Key>2.50/selenium-dotnet-2.50.1.zip</Key><Generation>1454004408846000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-28T18:06:48.845Z</LastModified><ETag>"cbc94b85ee75686ce6c3cf103670150d"</ETag><Size>6431682</Size><Owner/></Contents><Contents><Key>2.50/selenium-dotnet-strongnamed-2.50.0.zip</Key><Generation>1453938675065000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T23:51:15.064Z</LastModified><ETag>"55712f98477707fbeb41e84a325b40a0"</ETag><Size>4018713</Size><Owner/></Contents><Contents><Key>2.50/selenium-dotnet-strongnamed-2.50.1.zip</Key><Generation>1454004410999000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-28T18:06:50.998Z</LastModified><ETag>"ca7bf7ebd7873ff80b48f3d74b569b3f"</ETag><Size>4035960</Size><Owner/></Contents><Contents><Key>2.50/selenium-java-2.50.0.zip</Key><Generation>1453920411709000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T18:46:51.709Z</LastModified><ETag>"f1243239575d8a32e96decb4ccba6847"</ETag><Size>22491434</Size><Owner/></Contents><Contents><Key>2.50/selenium-java-2.50.1.zip</Key><Generation>1454094731773000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-29T19:12:11.772Z</LastModified><ETag>"7648ad9f89428a443c8aff5bb5cc6885"</ETag><Size>22491638</Size><Owner/></Contents><Contents><Key>2.50/selenium-server-2.50.0.zip</Key><Generation>1453920393256000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T18:46:33.255Z</LastModified><ETag>"dee71d9814589c2cf3bd2e31c6710359"</ETag><Size>28091614</Size><Owner/></Contents><Contents><Key>2.50/selenium-server-2.50.1.zip</Key><Generation>1454094714009000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-29T19:11:54.008Z</LastModified><ETag>"2f9ffd31e3b824e95395cba80dab9d02"</ETag><Size>28092228</Size><Owner/></Contents><Contents><Key>2.50/selenium-server-standalone-2.50.0.jar</Key><Generation>1453920370942000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-27T18:46:10.941Z</LastModified><ETag>"65d4c900eef25184215326fd58c36f30"</ETag><Size>30950281</Size><Owner/></Contents><Contents><Key>2.50/selenium-server-standalone-2.50.1.jar</Key><Generation>1454094690866000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-01-29T19:11:30.865Z</LastModified><ETag>"bd291ba0e26f486ff12b45a627ecdc80"</ETag><Size>30950287</Size><Owner/></Contents><Contents><Key>2.51/IEDriverServer_Win32_2.51.0.zip</Key><Generation>1454703510905000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T20:18:30.904Z</LastModified><ETag>"6550ee21d56f3af8cd8382575613add0"</ETag><Size>994616</Size><Owner/></Contents><Contents><Key>2.51/IEDriverServer_x64_2.51.0.zip</Key><Generation>1454703513403000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T20:18:33.402Z</LastModified><ETag>"81792e036e82c1cb14830555a14aad5d"</ETag><Size>1167674</Size><Owner/></Contents><Contents><Key>2.51/selenium-dotnet-2.51.0.zip</Key><Generation>1454703535008000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T20:18:55.006Z</LastModified><ETag>"fd6dd75e8884bbabf6f05f3f25d597ce"</ETag><Size>6852794</Size><Owner/></Contents><Contents><Key>2.51/selenium-dotnet-strongnamed-2.51.0.zip</Key><Generation>1454703522617000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T20:18:42.616Z</LastModified><ETag>"25fb5120f0d9e0947418bfdb1445684a"</ETag><Size>4000729</Size><Owner/></Contents><Contents><Key>2.51/selenium-java-2.51.0.zip</Key><Generation>1454699875045000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T19:17:55.044Z</LastModified><ETag>"26f0a4f0f3747b04b52fbb84189b57ab"</ETag><Size>22492611</Size><Owner/></Contents><Contents><Key>2.51/selenium-server-2.51.0.zip</Key><Generation>1454699917440000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T19:18:37.439Z</LastModified><ETag>"aa2dfa0723b2463427b86ee8f1294fd6"</ETag><Size>28093142</Size><Owner/></Contents><Contents><Key>2.51/selenium-server-standalone-2.51.0.jar</Key><Generation>1454699947012000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-05T19:19:07.010Z</LastModified><ETag>"25b908caa408d91ee765d9d1528ad219"</ETag><Size>30951085</Size><Owner/></Contents><Contents><Key>2.52/IEDriverServer_Win32_2.52.0.zip</Key><Generation>1455295643801000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-12T16:47:23.799Z</LastModified><ETag>"b5510a35412deb15616895aa0fb1a5b5"</ETag><Size>993964</Size><Owner/></Contents><Contents><Key>2.52/IEDriverServer_Win32_2.52.1.zip</Key><Generation>1456256404259000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-23T19:40:04.258Z</LastModified><ETag>"0fb199d71d991dfcf65a198051016d00"</ETag><Size>995249</Size><Owner/></Contents><Contents><Key>2.52/IEDriverServer_Win32_2.52.2.zip</Key><Generation>1457370930726000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-07T17:15:30.723Z</LastModified><ETag>"4c1b014344f1f07021782835102e0b39"</ETag><Size>1002228</Size><Owner/></Contents><Contents><Key>2.52/IEDriverServer_x64_2.52.0.zip</Key><Generation>1455295639993000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-12T16:47:19.991Z</LastModified><ETag>"d31b778a6f7d6fcd4a1f2ee7fddfa2c6"</ETag><Size>1168291</Size><Owner/></Contents><Contents><Key>2.52/IEDriverServer_x64_2.52.1.zip</Key><Generation>1456256407251000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-23T19:40:07.250Z</LastModified><ETag>"6620b7216ba8ecb48c792dabef681271"</ETag><Size>1170901</Size><Owner/></Contents><Contents><Key>2.52/IEDriverServer_x64_2.52.2.zip</Key><Generation>1457370934185000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-07T17:15:34.183Z</LastModified><ETag>"631e9409008760acb230d4bc53c2bcb5"</ETag><Size>1178043</Size><Owner/></Contents><Contents><Key>2.52/selenium-dotnet-2.52.0.zip</Key><Generation>1455295696212000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-12T16:48:16.211Z</LastModified><ETag>"5a997ad6374e44716206e58572cf2385"</ETag><Size>6441916</Size><Owner/></Contents><Contents><Key>2.52/selenium-dotnet-strongnamed-2.52.0.zip</Key><Generation>1455295669243000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-12T16:47:49.242Z</LastModified><ETag>"6d1057080ddad5d02a3c97f3fc43d2ba"</ETag><Size>4011786</Size><Owner/></Contents><Contents><Key>2.52/selenium-java-2.52.0.zip</Key><Generation>1455218648292000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-11T19:24:08.291Z</LastModified><ETag>"b9049c1fed9af4c4fab456cba85cae3a"</ETag><Size>22493318</Size><Owner/></Contents><Contents><Key>2.52/selenium-server-2.52.0.zip</Key><Generation>1455218651565000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-11T19:24:11.564Z</LastModified><ETag>"64c8130fcdc6bea478204acb3cd29d08"</ETag><Size>28094396</Size><Owner/></Contents><Contents><Key>2.52/selenium-server-standalone-2.52.0.jar</Key><Generation>1455218645847000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-02-11T19:24:05.846Z</LastModified><ETag>"30aa6d207e530a3c25fc3c12ea968a8d"</ETag><Size>30951542</Size><Owner/></Contents><Contents><Key>2.53/IEDriverServer_Win32_2.53.0.zip</Key><Generation>1458158206319000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-16T19:56:46.318Z</LastModified><ETag>"63066830741d59ae6c74045a9f24291c"</ETag><Size>1002225</Size><Owner/></Contents><Contents><Key>2.53/IEDriverServer_Win32_2.53.1.zip</Key><Generation>1459786970866000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-04-04T16:22:50.864Z</LastModified><ETag>"35ac005f9088f2995d6a1cdc384fe4cb"</ETag><Size>995084</Size><Owner/></Contents><Contents><Key>2.53/IEDriverServer_x64_2.53.0.zip</Key><Generation>1458158211557000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-16T19:56:51.555Z</LastModified><ETag>"0acce304cbd05a25ba6f11f7c8b9311c"</ETag><Size>1178037</Size><Owner/></Contents><Contents><Key>2.53/IEDriverServer_x64_2.53.1.zip</Key><Generation>1459786972569000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-04-04T16:22:52.568Z</LastModified><ETag>"6c822788a04e4e8d4727dc4c08c0102a"</ETag><Size>1169399</Size><Owner/></Contents><Contents><Key>2.53/selenium-dotnet-2.53.0.zip</Key><Generation>1458158185853000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-16T19:56:25.851Z</LastModified><ETag>"48497a5fee161525c084902d23f9f343"</ETag><Size>6462967</Size><Owner/></Contents><Contents><Key>2.53/selenium-dotnet-2.53.1.zip</Key><Generation>1467208972078000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-06-29T14:02:52.069Z</LastModified><ETag>"89e6bf9613ed24da24fd52097b5d90f4"</ETag><Size>6452905</Size><Owner/></Contents><Contents><Key>2.53/selenium-dotnet-strongnamed-2.53.0.zip</Key><Generation>1458158201712000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-16T19:56:41.710Z</LastModified><ETag>"74430a6ae437d7a03d04ca3858ab5fe8"</ETag><Size>4063912</Size><Owner/></Contents><Contents><Key>2.53/selenium-dotnet-strongnamed-2.53.1.zip</Key><Generation>1467208970946000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-06-29T14:02:50.941Z</LastModified><ETag>"934ee45515dfff254bf684e47ab3cee5"</ETag><Size>4022021</Size><Owner/></Contents><Contents><Key>2.53/selenium-java-2.53.0.zip</Key><Generation>1458061759268000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-15T17:09:19.267Z</LastModified><ETag>"e76e4cb82b51e459a78244c7af7076d5"</ETag><Size>10491314</Size><Owner/></Contents><Contents><Key>2.53/selenium-java-2.53.1.zip</Key><Generation>1467314953171000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-06-30T19:29:13.165Z</LastModified><ETag>"b2d9f0efcefcbb3f16802836aed23a42"</ETag><Size>10491210</Size><Owner/></Contents><Contents><Key>2.53/selenium-server-2.53.0.zip</Key><Generation>1458061758819000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-15T17:09:18.817Z</LastModified><ETag>"3a1daead013d4237ff6c24909a600073"</ETag><Size>19209563</Size><Owner/></Contents><Contents><Key>2.53/selenium-server-2.53.1.zip</Key><Generation>1467314967826000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-06-30T19:29:27.821Z</LastModified><ETag>"fe506d2323d3fbfe82c3d91badb8f012"</ETag><Size>19209475</Size><Owner/></Contents><Contents><Key>2.53/selenium-server-standalone-2.53.0.jar</Key><Generation>1458061325282000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-03-15T17:02:05.280Z</LastModified><ETag>"774efe2d84987fb679f2dea038c2fa32"</ETag><Size>21231089</Size><Owner/></Contents><Contents><Key>2.53/selenium-server-standalone-2.53.1.jar</Key><Generation>1467314938331000</Generation><MetaGeneration>1</MetaGeneration><LastModified>2016-06-30T19:28:58.327Z</LastModified><ETag>"63a0b96eab18f8420b9bba2f0f5d380c"</ETag><Size>21231092</Size><Owner/></Contents><Contents><Key>icons/back.gif</Key><Generation>1389651464491000</Generation><MetaGeneration>2</MetaGeneration><LastModified>2014-01-13T22:17:44.445Z</LastModified><ETag>"4bce9846e05d3bffdfb293d47c840a8e"</ETag><Size>216</Size><Owner/></Contents><Contents><Key>icons/binary.gif</Key><Generation>1389651166628000</Generation><MetaGeneration>4</MetaGeneration><LastModified>2014-01-13T22:12:46.557Z</LastModified><ETag>"96bd4beed88ff93356586485c13e5d89"</ETag><Size>246</Size><Owner/></Contents><Contents><Key>icons/blank.gif</Key><Generation>1389651167385000</Generation><MetaGeneration>4</MetaGeneration><LastModified>2014-01-13T22:12:47.329Z</LastModified><ETag>"19517fb39a31be6b8d7ccf53ad84908f"</ETag><Size>148</Size><Owner/></Contents><Contents><Key>icons/folder.gif</Key><Generation>1389651168089000</Generation><MetaGeneration>4</MetaGeneration><LastModified>2014-01-13T22:12:47.995Z</LastModified><ETag>"d342cba375fea336967317bdb5d7cf19"</ETag><Size>225</Size><Owner/></Contents><Contents><Key>index.html</Key><Generation>1389651159940000</Generation><MetaGeneration>4</MetaGeneration><LastModified>2014-01-13T22:12:39.793Z</LastModified><ETag>"704b0f841aad1b1428481b7ff3c759c0"</ETag><Size>10574</Size><Owner/></Contents></ListBucketResult>
@@ -0,0 +1,59 @@
1
+ require "spec_helper"
2
+
3
+ describe IEDriverServer::Helper::GoogleCodeParser do
4
+ let!(:open_uri_provider) do
5
+ double("open_uri_provider").tap do |oup|
6
+ allow(oup).to receive(:open_uri) { File.read(File.join(File.dirname(__FILE__), "assets/google-code-bucket.xml")) }
7
+ end
8
+ end
9
+ let!(:parser) { IEDriverServer::Helper::GoogleCodeParser.new('IEDriverServer_Win32',
10
+ url: 'http://selenium-release.storage.googleapis.com',
11
+ open_uri_provider: open_uri_provider) }
12
+
13
+ describe "#downloads" do
14
+ it "returns an array of URLs for the platform" do
15
+ expect(parser.downloads).to eq [
16
+ "http://selenium-release.storage.googleapis.com/2.39/IEDriverServer_Win32_2.39.0.zip",
17
+ "http://selenium-release.storage.googleapis.com/2.40/IEDriverServer_Win32_2.40.0.zip",
18
+ "http://selenium-release.storage.googleapis.com/2.41/IEDriverServer_Win32_2.41.0.zip",
19
+ "http://selenium-release.storage.googleapis.com/2.42/IEDriverServer_Win32_2.42.0.zip",
20
+ "http://selenium-release.storage.googleapis.com/2.43/IEDriverServer_Win32_2.43.0.zip",
21
+ "http://selenium-release.storage.googleapis.com/2.44/IEDriverServer_Win32_2.44.0.zip",
22
+ "http://selenium-release.storage.googleapis.com/2.45/IEDriverServer_Win32_2.45.0.zip",
23
+ "http://selenium-release.storage.googleapis.com/2.46/IEDriverServer_Win32_2.46.0.zip",
24
+ "http://selenium-release.storage.googleapis.com/2.47/IEDriverServer_Win32_2.47.0.zip",
25
+ "http://selenium-release.storage.googleapis.com/2.48/IEDriverServer_Win32_2.48.0.zip",
26
+ "http://selenium-release.storage.googleapis.com/2.49/IEDriverServer_Win32_2.49.0.zip",
27
+ "http://selenium-release.storage.googleapis.com/2.50/IEDriverServer_Win32_2.50.0.zip",
28
+ "http://selenium-release.storage.googleapis.com/2.51/IEDriverServer_Win32_2.51.0.zip",
29
+ "http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.0.zip",
30
+ "http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.1.zip",
31
+ "http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.2.zip",
32
+ "http://selenium-release.storage.googleapis.com/2.53/IEDriverServer_Win32_2.53.0.zip",
33
+ "http://selenium-release.storage.googleapis.com/2.53/IEDriverServer_Win32_2.53.1.zip"]
34
+ end
35
+ end
36
+
37
+ describe "#newest_download" do
38
+ it "returns the last URL for the platform" do
39
+ expect(parser.newest_download).to eq 'http://selenium-release.storage.googleapis.com/2.53/IEDriverServer_Win32_2.53.1.zip'
40
+ end
41
+
42
+ context "out-of-order versions" do
43
+ before do
44
+ allow(parser).to receive(:downloads).and_return([
45
+ "http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.0.zip",
46
+ "http://selenium-release.storage.googleapis.com/2.53/IEDriverServer_Win32_2.51.3.zip",
47
+ "http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.1.zip",
48
+ "http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.2.zip",
49
+ "http://selenium-release.storage.googleapis.com/2.53/IEDriverServer_Win32_2.50.0.zip",
50
+ "http://selenium-release.storage.googleapis.com/2.51/IEDriverServer_Win32_2.51.0.zip",
51
+ ])
52
+ end
53
+
54
+ it "returns the newest version" do
55
+ expect(parser.newest_download).to eq 'http://selenium-release.storage.googleapis.com/2.52/IEDriverServer_Win32_2.52.2.zip'
56
+ end
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,17 @@
1
+ require "spec_helper"
2
+
3
+ describe IEDriverServer::Helper do
4
+ let(:helper) { IEDriverServer::Helper.new }
5
+
6
+ describe "#binary_path" do
7
+ context "on 32bit platform" do
8
+ before { allow(helper).to receive(:platform) { "Win32" } }
9
+ it { expect(helper.binary_path).to match(/\.IEDriverServer-helper\/Win32\/IEDriverServer.exe$/) }
10
+ end
11
+
12
+ context "on x64 platform" do
13
+ before { allow(helper).to receive(:platform) { "x64" } }
14
+ it { expect(helper.binary_path).to match(/\.IEDriverServer-helper\/x64\/IEDriverServer.exe$/) }
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,2 @@
1
+ require "rspec"
2
+ require File.expand_path(File.join(File.dirname(__FILE__), "..", "lib/ie_driver_server/helper"))
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iedriverserver-helper
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Rasmus Bergholdt
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-07-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '11.2'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '11.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: nokogiri
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.6'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubyzip
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Easy installation and use of IEDriverServer, the IE Browser selenium
70
+ webdriver adapter.
71
+ email:
72
+ - rasmus.bergholdt@gmail.com
73
+ executables:
74
+ - IEDriverServer
75
+ - IEDriverServer-update
76
+ extensions: []
77
+ extra_rdoc_files: []
78
+ files:
79
+ - ".gitignore"
80
+ - ".travis.yml"
81
+ - CHANGELOG.md
82
+ - Gemfile
83
+ - LICENSE.txt
84
+ - README.md
85
+ - Rakefile
86
+ - bin/IEDriverServer
87
+ - bin/IEDriverServer-update
88
+ - iedriverserver-helper.gemspec
89
+ - lib/ie_driver_server/helper.rb
90
+ - lib/ie_driver_server/helper/google_code_parser.rb
91
+ - lib/ie_driver_server/helper/version.rb
92
+ - spec/assets/google-code-bucket.xml
93
+ - spec/google_code_parser_spec.rb
94
+ - spec/helper_spec.rb
95
+ - spec/spec_helper.rb
96
+ homepage: https://github.com/bergholdt/iedriverserver-helper
97
+ licenses:
98
+ - MIT
99
+ metadata: {}
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.4.5.1
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Easy installation and use of IEDriverServer.
120
+ test_files:
121
+ - spec/assets/google-code-bucket.xml
122
+ - spec/google_code_parser_spec.rb
123
+ - spec/helper_spec.rb
124
+ - spec/spec_helper.rb