firewatir 1.8.1 → 1.9.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGES +10 -0
  2. data/VERSION +1 -1
  3. data/lib/firewatir/firefox.rb +6 -0
  4. metadata +19 -15
data/CHANGES CHANGED
@@ -1,3 +1,13 @@
1
+ == Version 1.9.0 -2011//
2
+
3
+ * Added support for IE9
4
+ * Updated watir/ie for Ruby 1.8.7 and are no longer supporting Ruby 1.8.6.
5
+ * Using RAutomation instead of Autoit, WinClicker and the WindowHelper
6
+ * New implementation of ie.file_field
7
+ * Replaced ie.dialog with ie.javascript_dialog
8
+ * Recompiled win32ole for 1.8.7 mingw and removed win32ole for 1.8.6
9
+
10
+
1
11
  == Version 1.8.1 - 2011/04/08
2
12
 
3
13
  === IE improvements
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.1
1
+ 1.9.0.rc1
@@ -923,9 +923,15 @@ module FireWatir
923
923
  end
924
924
  alias showFrames show_frames
925
925
 
926
+ @@path_to_bin = nil
927
+ def self.path_to_bin=(path)
928
+ @@path_to_bin = path
929
+ end
930
+
926
931
  private
927
932
 
928
933
  def path_to_bin
934
+ return @@path_to_bin if @@path_to_bin
929
935
  path = case current_os()
930
936
  when :windows
931
937
  path_from_registry
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firewatir
3
3
  version: !ruby/object:Gem::Version
4
- hash: 53
5
- prerelease: false
4
+ hash: 15424167
5
+ prerelease: 6
6
6
  segments:
7
7
  - 1
8
- - 8
8
+ - 9
9
+ - 0
10
+ - rc
9
11
  - 1
10
- version: 1.8.1
12
+ version: 1.9.0.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - Angrez Singh
@@ -15,8 +17,7 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2011-04-10 00:00:00 +03:00
19
- default_executable:
20
+ date: 2011-06-05 00:00:00 Z
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
22
23
  name: commonwatir
@@ -26,12 +27,14 @@ dependencies:
26
27
  requirements:
27
28
  - - "="
28
29
  - !ruby/object:Gem::Version
29
- hash: 53
30
+ hash: 15424167
30
31
  segments:
31
32
  - 1
32
- - 8
33
+ - 9
34
+ - 0
35
+ - rc
33
36
  - 1
34
- version: 1.8.1
37
+ version: 1.9.0.rc1
35
38
  type: :runtime
36
39
  version_requirements: *id001
37
40
  description: " FireWatir stands for \"Web Application Testing in Ruby for Firefox\". FireWatir (pronounced firewater) is a free, \n open-source functional testing tool for automating browser-based tests of web applications. \n It works with applications written in any language.\n FireWatir drives the Firefox browser the same way an end user would. \n It clicks links, fills in forms, presses buttons. \n FireWatir also checks results, such as whether expected text appears on the page, or whether a control is enabled.\n FireWatir is a Ruby library that works with Firefox on Windows. It also works on Linux, Mac but without support for\n JavaScript popups (currently support will be there shortly).\n"
@@ -167,7 +170,6 @@ files:
167
170
  - VERSION
168
171
  - firewatir.gemspec
169
172
  - README.rdoc
170
- has_rdoc: true
171
173
  homepage: http://www.watir.com
172
174
  licenses: []
173
175
 
@@ -195,16 +197,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
195
197
  required_rubygems_version: !ruby/object:Gem::Requirement
196
198
  none: false
197
199
  requirements:
198
- - - ">="
200
+ - - ">"
199
201
  - !ruby/object:Gem::Version
200
- hash: 3
202
+ hash: 25
201
203
  segments:
202
- - 0
203
- version: "0"
204
+ - 1
205
+ - 3
206
+ - 1
207
+ version: 1.3.1
204
208
  requirements:
205
209
  - Mozilla Firefox browser 1.5 or later.
206
210
  rubyforge_project: Watir
207
- rubygems_version: 1.3.7
211
+ rubygems_version: 1.7.2
208
212
  signing_key:
209
213
  specification_version: 3
210
214
  summary: Automated testing tool for web applications using Firefox browser.