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 +18 -1
- data/lib/selenium/webdriver/common/platform.rb +2 -2
- data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
- data/lib/selenium/webdriver/firefox/profile.rb +1 -1
- data/lib/selenium/webdriver/ie/native/win32/IEDriver.dll +0 -0
- data/lib/selenium/webdriver/ie/native/x64/IEDriver.dll +0 -0
- metadata +2 -2
data/CHANGES
CHANGED
@@ -1,4 +1,21 @@
|
|
1
|
-
2.
|
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.
|
Binary file
|
@@ -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" => '
|
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"
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: selenium-webdriver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.
|
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-
|
13
|
+
date: 2011-12-08 00:00:00 +01:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|