selenium-webdriver 3.0.0.beta4.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES CHANGED
@@ -1,3 +1,9 @@
1
+ 3.0.0 (2016-10-13)
2
+ ===================
3
+
4
+ Firefox:
5
+ * Update :firefox_options support for geckodriver 0.11
6
+
1
7
  3.0.0.beta4 (2016-09-29)
2
8
  ===================
3
9
 
@@ -69,7 +69,7 @@ module Selenium
69
69
 
70
70
  chrome_options = caps['chromeOptions'] || caps[:chrome_options] || {}
71
71
  chrome_options['binary'] = Chrome.path if Chrome.path
72
- args = opts.delete(:args) || []
72
+ args = opts.delete(:args) || opts.delete(:switches) || []
73
73
  unless args.is_a? Array
74
74
  raise ArgumentError, ':args must be an Array of Strings'
75
75
  end
@@ -190,6 +190,8 @@ module Selenium
190
190
  hash['platform'] = value.to_s.upcase
191
191
  when :proxy
192
192
  hash['proxy'] = value.as_json if value
193
+ when :firefox_options
194
+ hash['moz:firefoxOptions'] = value
193
195
  when String, :firefox_binary
194
196
  hash[key.to_s] = value
195
197
  when Symbol
@@ -5,7 +5,7 @@ raise "cwd must be #{root} when reading gemspec" if root != Dir.pwd
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = 'selenium-webdriver'
8
- s.version = '3.0.0.beta4.0'
8
+ s.version = '3.0.0'
9
9
 
10
10
  s.authors = ['Alex Rodionov', 'Titus Fortner']
11
11
  s.email = ['p0deje@gmail.com', 'titusfortner@gmail.com']
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: 6
5
- version: 3.0.0.beta4.0
4
+ prerelease:
5
+ version: 3.0.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Alex Rodionov
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2016-10-04 00:00:00 -05:00
14
+ date: 2016-10-13 00:00:00 -05:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency