selenium-webdriver 2.7.0 → 2.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +15 -0
- data/README +1 -0
- data/lib/selenium/webdriver/chrome/service.rb +5 -1
- 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/firefox/profile.rb +1 -0
- 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,3 +1,18 @@
|
|
1
|
+
2.8.0 (2011-10-06)
|
2
|
+
==================
|
3
|
+
|
4
|
+
* Firefox
|
5
|
+
- Avoid telemetry prompt on Firefox 7
|
6
|
+
- Allow parallel execution with native events on Linux (#1326)
|
7
|
+
- Added native events support for Firefox 7 on Linux/Windows
|
8
|
+
- Improve search for libX11 for native events on Linux (#384)
|
9
|
+
- Fix double click with native events
|
10
|
+
* Chrome
|
11
|
+
- Fail fast if the chromedriver server is not executable.
|
12
|
+
* IE
|
13
|
+
- Fix find_element bug (#2563)
|
14
|
+
|
15
|
+
|
1
16
|
2.7.0 (2011-09-23)
|
2
17
|
==================
|
3
18
|
|
data/README
CHANGED
@@ -15,7 +15,11 @@ module Selenium
|
|
15
15
|
|
16
16
|
def self.executable_path
|
17
17
|
@executable_path ||= (
|
18
|
-
Platform.find_binary "chromedriver"
|
18
|
+
path = Platform.find_binary "chromedriver"
|
19
|
+
path or raise Error::WebDriverError, MISSING_TEXT
|
20
|
+
Platform.assert_executable path
|
21
|
+
|
22
|
+
path
|
19
23
|
)
|
20
24
|
end
|
21
25
|
|
Binary file
|
Binary file
|
Binary file
|
@@ -297,6 +297,7 @@ module Selenium
|
|
297
297
|
"security.warn_viewing_mixed.show_once" => 'false',
|
298
298
|
"signon.rememberSignons" => 'false',
|
299
299
|
"toolkit.networkmanager.disable" => 'true',
|
300
|
+
"toolkit.telemetry.prompted" => 'true',
|
300
301
|
"javascript.options.showInConsole" => 'true',
|
301
302
|
"browser.dom.window.dump.enabled" => 'true',
|
302
303
|
"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.8.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-10-06 00:00:00 +02:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|