commonwatir 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +7 -0
- data/VERSION +1 -1
- data/unittests/setup/watir-unittest.rb +3 -0
- metadata +5 -5
data/CHANGES
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
== Version 2.0.3 - 2011/10/21
|
2
|
+
|
3
|
+
* fix ElementCollections#[]
|
4
|
+
* fix IE::Process.start for IE9 when opening multiple windows
|
5
|
+
* add support for Spanish JavaScript and file upload dialogs
|
6
|
+
* fix IE#execute_script for Ruby 1.9 with IE9
|
7
|
+
|
1
8
|
== Version 2.0.2 - 2011/09/10
|
2
9
|
|
3
10
|
* added support for del, ins, font, meta and ol tags
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.3
|
@@ -15,6 +15,9 @@ module Watir::UnitTest
|
|
15
15
|
return $browser if $browser && $browser.exists?
|
16
16
|
$browser = Watir::Browser.new
|
17
17
|
end
|
18
|
+
def close_browser
|
19
|
+
$browser.close if $browser.exists?
|
20
|
+
end
|
18
21
|
|
19
22
|
def assert_class element, klass
|
20
23
|
assert_match(Regexp.new(klass, Regexp::IGNORECASE), element.class.to_s, "element class should be #{klass}; got #{element.class}")
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commonwatir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
9
|
+
- 3
|
10
|
+
version: 2.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Bret Pettichord
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-10-21 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: user-choices
|
@@ -132,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
132
|
requirements: []
|
133
133
|
|
134
134
|
rubyforge_project: wtr
|
135
|
-
rubygems_version: 1.8.
|
135
|
+
rubygems_version: 1.8.4
|
136
136
|
signing_key:
|
137
137
|
specification_version: 3
|
138
138
|
summary: Common library for Watir and FireWatir
|