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 +7 -0
- data/lib/selenium/webdriver/common/driver.rb +0 -20
- data/lib/selenium/webdriver/firefox.rb +0 -7
- data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
- data/lib/selenium/webdriver/ie/server.rb +1 -1
- data/lib/selenium/webdriver/opera/service.rb +1 -1
- data/lib/selenium/webdriver/remote/commands.rb +0 -2
- metadata +2 -2
data/CHANGES
CHANGED
@@ -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
|
#
|
Binary file
|
@@ -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://
|
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://
|
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.
|
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-
|
13
|
+
date: 2014-03-28 00:00:00 +01:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|