selenium-webdriver 2.14.0 → 2.15.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,4 +1,21 @@
1
- 2.14.0 (???)
1
+ 2.15.0 (2011-12-08)
2
+ ===================
3
+
4
+ * Firefox:
5
+ * Now supports up to Firefox 11 (for syntesized events)
6
+ * Implicit waits now change how long we wait for alerts. This
7
+ functionality will change in 2.16
8
+ * Fix scrolling issue (#2700)
9
+ * IE:
10
+ * Fix issue with getWindowHandles() and showModalDialog() (#1828)
11
+ * Add support for the window sizing and positioning API
12
+ * Make Platform.bitsize use the correct constant from FFI
13
+ * WebDriver internals:
14
+ * Atoms code contribution from Google
15
+ * Closure updated
16
+
17
+
18
+ 2.14.0 (2011-11-29)
2
19
  ===================
3
20
 
4
21
  * Add Selenium::WebDriver::Support::Select class to ease working with select lists.
@@ -44,8 +44,8 @@ module Selenium
44
44
 
45
45
  def bitsize
46
46
  @bitsize ||= (
47
- if defined?(FFI::BITSIZE)
48
- FFI::BITSIZE
47
+ if defined?(FFI::Platform::ADDRESS_SIZE)
48
+ FFI::Platform::ADDRESS_SIZE
49
49
  elsif defined?(FFI)
50
50
  FFI.type_size(:pointer) == 4 ? 32 : 64
51
51
  elsif jruby?
@@ -300,7 +300,7 @@ module Selenium
300
300
  "security.warn_viewing_mixed.show_once" => 'false',
301
301
  "signon.rememberSignons" => 'false',
302
302
  "toolkit.networkmanager.disable" => 'true',
303
- "toolkit.telemetry.prompted" => 'true',
303
+ "toolkit.telemetry.prompted" => '2',
304
304
  "javascript.options.showInConsole" => 'true',
305
305
  "browser.dom.window.dump.enabled" => 'true',
306
306
  "dom.report_all_js_exceptions" => "true"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.14.0
5
+ version: 2.15.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jari Bakken
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-11-29 00:00:00 +01:00
13
+ date: 2011-12-08 00:00:00 +01:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency