selenium-webdriver 2.22.0.rc3 → 2.22.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 +10 -5
- data/lib/selenium/webdriver/ie/server.rb +3 -2
- metadata +5 -5
data/CHANGES
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
2.22.0
|
|
2
|
-
|
|
1
|
+
2.22.0 (2012-05-29)
|
|
2
|
+
===================
|
|
3
3
|
|
|
4
4
|
* Fix conflict with ActiveSupport's Object#load (#3819)
|
|
5
5
|
* IE:
|
|
6
|
-
* standalone server executable,
|
|
6
|
+
* Default to standalone server executable, fall back to bundled DLLs.
|
|
7
|
+
* The 'nativeEvents' capabilitiy is exposed as :native_events in the Ruby client (mode still experimental).
|
|
7
8
|
* Firefox:
|
|
8
9
|
* Native events for Firefox 12.
|
|
9
10
|
* Native events retained for Firefox 3.x, 10 and 11.
|
|
@@ -11,13 +12,17 @@
|
|
|
11
12
|
* Fix for typing on XHTML pages (#3647)
|
|
12
13
|
* Fix for maximizing windows when switched to a frame (#3758)
|
|
13
14
|
* Handle alerts from nested iframes (#3825)
|
|
15
|
+
* Remote:
|
|
16
|
+
* Honor HTTP_PROXY env vars (#3838).
|
|
14
17
|
* Element#attribute returns nil if a boolean attribute is not present.
|
|
15
|
-
* NoSuchWindowError will be thrown if the currently selected
|
|
16
|
-
window is closed and another command is sent
|
|
18
|
+
* NoSuchWindowError will be thrown if the currently selected window is closed and another command is sent.
|
|
17
19
|
* Safari:
|
|
18
20
|
* support for frame switching, snapshot taking, execute script
|
|
19
21
|
* message protocol changed, not backwards compatible with 2.21.
|
|
20
22
|
* Style attributes are no longer lower-cased by default (#1089).
|
|
23
|
+
* Make sure the Ruby client kills Firefox even when the RPC fails.
|
|
24
|
+
* Make sure the Ruby client checks all network interfaces when finding free ports.
|
|
25
|
+
|
|
21
26
|
|
|
22
27
|
2.21.2 (2012-04-18)
|
|
23
28
|
===================
|
|
@@ -4,14 +4,15 @@ module Selenium
|
|
|
4
4
|
class Server
|
|
5
5
|
|
|
6
6
|
STOP_TIMEOUT = 5
|
|
7
|
+
DEPRECATION_WARNING = %{warning: the IE driver is moving the a standalone executable. Please download the IEDriverServer from http://code.google.com/p/selenium/downloads/list and place the executable on your PATH.\nFalling back to bundled DLLs for now..}
|
|
7
8
|
|
|
8
9
|
def self.get
|
|
9
10
|
binary = Platform.find_binary("IEDriverServer")
|
|
10
11
|
if binary
|
|
11
12
|
new(binary)
|
|
12
13
|
else
|
|
13
|
-
|
|
14
|
-
require 'selenium/
|
|
14
|
+
warn DEPRECATION_WARNING
|
|
15
|
+
require 'selenium/webdriver/ie/in_process_server'
|
|
15
16
|
InProcessServer.new
|
|
16
17
|
end
|
|
17
18
|
end
|
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:
|
|
5
|
-
version: 2.22.0
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 2.22.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: 2012-05-
|
|
13
|
+
date: 2012-05-30 00:00:00 +02:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -250,9 +250,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
250
250
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
251
|
none: false
|
|
252
252
|
requirements:
|
|
253
|
-
- - "
|
|
253
|
+
- - ">="
|
|
254
254
|
- !ruby/object:Gem::Version
|
|
255
|
-
version:
|
|
255
|
+
version: "0"
|
|
256
256
|
requirements: []
|
|
257
257
|
|
|
258
258
|
rubyforge_project:
|