selenium-webdriver 2.40.0 → 2.41.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,10 @@
1
+ 2.41.0 (2014-03-28)
2
+ ===================
3
+
4
+ * Removed dead browser visibility methods.
5
+ * Firefox:
6
+ * Native events support for Firefox 28 (removed support for 26)
7
+
1
8
  2.40.0 (2014-02-19)
2
9
  ===================
3
10
 
@@ -140,26 +140,6 @@ module Selenium
140
140
  bridge.getPageSource
141
141
  end
142
142
 
143
- #
144
- # Get the visibility of the browser. Not applicable for all browsers.
145
- #
146
- # @return [Boolean]
147
- #
148
-
149
- def visible?
150
- bridge.getBrowserVisible
151
- end
152
-
153
- #
154
- # Set the visibility of the browser. Not applicable for all browsers.
155
- #
156
- # @param [Boolean]
157
- #
158
-
159
- def visible=(bool)
160
- bridge.setBrowserVisible bool
161
- end
162
-
163
143
  #
164
144
  # Quit the browser
165
145
  #
@@ -28,10 +28,3 @@ module Selenium
28
28
  end
29
29
  end
30
30
  end
31
-
32
-
33
- # SocketError was added in Ruby 1.8.7.
34
- # If it's not defined, we add it here so it can be used in rescues.
35
- unless defined? SocketError
36
- class SocketError < IOError; end
37
- end
@@ -11,7 +11,7 @@ module Selenium
11
11
  new(binary)
12
12
  else
13
13
  raise Error::WebDriverError,
14
- "Unable to find standalone executable. Please download the IEDriverServer from http://code.google.com/p/selenium/downloads/list and place the executable on your PATH."
14
+ "Unable to find standalone executable. Please download the IEDriverServer from http://selenium-release.storage.googleapis.com/index.html and place the executable on your PATH."
15
15
  end
16
16
  end
17
17
 
@@ -7,7 +7,7 @@ module Selenium
7
7
  #
8
8
 
9
9
  class Service
10
- MISSING_TEXT = 'Unable to find the Selenium server jar. Please download the standalone server from http://code.google.com/p/selenium/downloads/list and set the SELENIUM_SERVER_JAR environmental variable to its location. More info at http://code.google.com/p/selenium/wiki/OperaDriver.'
10
+ MISSING_TEXT = 'Unable to find the Selenium server jar. Please download the standalone server from http://selenium-release.storage.googleapis.com/index.html and set the SELENIUM_SERVER_JAR environmental variable to its location. More info at http://code.google.com/p/selenium/wiki/OperaDriver.'
11
11
 
12
12
  def self.selenium_server_jar
13
13
  @selenium_server_jar ||= (
@@ -20,8 +20,6 @@ class Selenium::WebDriver::Remote::Bridge
20
20
  command :refresh, :post, "session/:session_id/refresh"
21
21
  command :quit, :delete, "session/:session_id"
22
22
  command :close, :delete, "session/:session_id/window"
23
- command :getVisible, :get, "session/:session_id/visible"
24
- command :setVisible, :post, "session/:session_id/visible"
25
23
  command :getPageSource, :get, "session/:session_id/source"
26
24
  command :getTitle, :get, "session/:session_id/title"
27
25
  command :findElement, :post, "session/:session_id/element"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.40.0
5
+ version: 2.41.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: 2014-02-19 00:00:00 +01:00
13
+ date: 2014-03-28 00:00:00 +01:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency