selenium-webdriver 2.45.0.dev3 → 2.45.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 +11 -2
- data/Gemfile.lock +10 -10
- data/lib/selenium/webdriver/chrome/profile.rb +0 -0
- data/lib/selenium/webdriver/common/mouse.rb +0 -0
- data/lib/selenium/webdriver/common/proxy.rb +0 -0
- data/lib/selenium/webdriver/common/touch_screen.rb +0 -0
- data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
- data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/remote/bridge.rb +0 -0
- data/lib/selenium/webdriver/remote/capabilities.rb +0 -0
- data/lib/selenium/webdriver/safari/bridge.rb +0 -0
- data/lib/selenium/webdriver/safari/resources/SafariDriver.safariextz +0 -0
- data/lib/selenium/webdriver/safari/resources/client.js +1 -0
- data/selenium-webdriver.gemspec +1 -1
- metadata +3 -3
data/CHANGES
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
2.45.0
|
|
2
|
-
|
|
1
|
+
2.45.0 (2014-02-28)
|
|
2
|
+
===================
|
|
3
|
+
|
|
4
|
+
Firefox:
|
|
5
|
+
* Native events in Firefox relied on an API that Mozilla no longer
|
|
6
|
+
provides. As such, fall back to synthesized events on recent Firefox
|
|
7
|
+
versions.
|
|
8
|
+
|
|
9
|
+
Ruby changes:
|
|
10
|
+
* Allow switching windows when current window is closed (thanks Titus Fortner).
|
|
11
|
+
* Add :javascript_enabled to Android capabilities.
|
|
3
12
|
|
|
4
13
|
2.44.0 (2014-10-05)
|
|
5
14
|
===================
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
selenium-webdriver (2.45.0
|
|
4
|
+
selenium-webdriver (2.45.0)
|
|
5
5
|
childprocess (~> 0.5)
|
|
6
6
|
multi_json (~> 1.0)
|
|
7
7
|
rubyzip (~> 1.0)
|
|
@@ -10,14 +10,14 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
addressable (2.3.
|
|
13
|
+
addressable (2.3.7)
|
|
14
14
|
builder (3.2.2)
|
|
15
15
|
childprocess (0.5.5)
|
|
16
16
|
ffi (~> 1.0, >= 1.0.11)
|
|
17
|
-
ci_reporter (1.
|
|
17
|
+
ci_reporter (1.9.2)
|
|
18
18
|
builder (>= 2.1.2)
|
|
19
|
-
crack (0.4.
|
|
20
|
-
safe_yaml (~> 0.
|
|
19
|
+
crack (0.4.2)
|
|
20
|
+
safe_yaml (~> 1.0.0)
|
|
21
21
|
diff-lcs (1.2.5)
|
|
22
22
|
ffi (1.9.6)
|
|
23
23
|
multi_json (1.10.1)
|
|
@@ -30,11 +30,11 @@ GEM
|
|
|
30
30
|
rspec-expectations (2.99.2)
|
|
31
31
|
diff-lcs (>= 1.1.3, < 2.0)
|
|
32
32
|
rspec-mocks (2.99.2)
|
|
33
|
-
rubyzip (1.1.
|
|
34
|
-
safe_yaml (0.
|
|
35
|
-
webmock (1.
|
|
36
|
-
addressable (
|
|
37
|
-
crack (>= 0.
|
|
33
|
+
rubyzip (1.1.7)
|
|
34
|
+
safe_yaml (1.0.4)
|
|
35
|
+
webmock (1.18.0)
|
|
36
|
+
addressable (>= 2.3.6)
|
|
37
|
+
crack (>= 0.3.2)
|
|
38
38
|
websocket (1.2.1)
|
|
39
39
|
|
|
40
40
|
PLATFORMS
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
@@ -6891,6 +6891,7 @@ safaridriver.client.init = function() {
|
|
|
6891
6891
|
if (d) {
|
|
6892
6892
|
d = new goog.Uri(d);
|
|
6893
6893
|
goog.log.info(c, "Connecting to SafariDriver browser extension...");
|
|
6894
|
+
goog.log.info(c, "This will fail if you have not installed the latest SafariDriver extension from\nhttp://selenium-release.storage.googleapis.com/index.html");
|
|
6894
6895
|
goog.log.info(c, "Extension logs may be viewed by clicking the Selenium [\u2713] button on the Safari toolbar");
|
|
6895
6896
|
var e = 0, f = new safaridriver.message.Connect(d.toString());
|
|
6896
6897
|
a();
|
data/selenium-webdriver.gemspec
CHANGED
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.45.0
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 2.45.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: 2015-02-
|
|
13
|
+
date: 2015-02-28 00:00:00 +01:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|