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 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
@@ -28,3 +28,4 @@ distributed under the License is distributed on an "AS IS" BASIS,
28
28
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29
29
  See the License for the specific language governing permissions and
30
30
  limitations under the License.
31
+
@@ -15,7 +15,11 @@ module Selenium
15
15
 
16
16
  def self.executable_path
17
17
  @executable_path ||= (
18
- Platform.find_binary "chromedriver" or raise Error::WebDriverError, MISSING_TEXT
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
 
@@ -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"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.7.0
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-09-23 00:00:00 +02:00
13
+ date: 2011-10-06 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency