watir 1.5.5 → 1.5.6
Sign up to get free protection for your applications and to get access to all the features.
- data/changes.rb +35 -0
- data/watir/ie.rb +1 -1
- metadata +5 -5
data/changes.rb
CHANGED
@@ -1,12 +1,46 @@
|
|
1
1
|
=begin rdoc
|
2
|
+
== Watir 1.5.5.
|
3
|
+
|
4
|
+
New Features
|
5
|
+
|
6
|
+
* Multiple attributes can now be specified for these elements:
|
7
|
+
li, ul, map, area, h1, h2, h3, h4, h5, h6. (This was claimed to work earlier,
|
8
|
+
but never did.)
|
9
|
+
http://jira.openqa.org/browse/WTR-196
|
10
|
+
|
11
|
+
Bug Fixes
|
12
|
+
|
13
|
+
* Statements such at ie.table().row() now work (no longer private).
|
14
|
+
http://jira.openqa.org/browse/WTR-117
|
15
|
+
* Fixed bug with images method when used with anything but ie. (Paul Rogers)
|
16
|
+
E.g. ie.div().images. http://jira.openqa.org/browse/WTR-211
|
17
|
+
* Fixed intermittent bug with ie.file_field().set. (Tomislav Car)
|
18
|
+
http://jira.openqa.org/browse/WTR-210
|
19
|
+
* When installing Watir 1.5.4 you could get extra, confusing
|
20
|
+
questions. This shouldn't happen anymore.
|
21
|
+
http://jira.openqa.org/browse/WTR-209
|
22
|
+
* Improved error message when element is not found using multiple attributes.
|
23
|
+
http://jira.openqa.org/browse/WTR-181
|
24
|
+
* Made examples and unit tests somewhat better examples: removed unnecessary
|
25
|
+
"include Watir" statements; started using "browser" instead of "$ie"; use
|
26
|
+
new methods 'goto_page' and 'uses_page' (this last improves performance of
|
27
|
+
unit tests).
|
28
|
+
http://jira.openqa.org/browse/WTR-159
|
29
|
+
* Moved brittle unit test that was causing cascading failures; renamed another
|
30
|
+
that was causing a namespace collision.
|
31
|
+
http://jira.openqa.org/browse/WTR-92
|
32
|
+
|
2
33
|
== Version 1.5.4
|
34
|
+
|
3
35
|
New Features
|
36
|
+
|
4
37
|
* Add new speed, :zippy. This is like fast, but, in effect, it does a TextField#value= instead of a TextField#set. If you have specific text fields that you never want this to happen to, use ie.text_field(:how, what).requires_typing.set instead.
|
5
38
|
http://svn.openqa.org/fisheye/changelog/watir/?cs=1295
|
6
39
|
* Add support for Chinese input as supplied by Vincent Xu.
|
7
40
|
http://jira.openqa.org/browse/WTR-71.
|
8
41
|
|
9
42
|
Bug Fixes
|
43
|
+
|
10
44
|
* Add dependency on windows-pr 0.6.6, which seems to be necessary on Vista.
|
11
45
|
* Fix for bug in IE.close_others provided by Paul Taylor.
|
12
46
|
http://jira.openqa.org/browse/WTR-194
|
@@ -14,6 +48,7 @@ Bug Fixes
|
|
14
48
|
http://svn.openqa.org/fisheye/changelog/watir/?cs=1301
|
15
49
|
|
16
50
|
== Version 1.5.3
|
51
|
+
|
17
52
|
Bug fixes and minor cleanup.
|
18
53
|
|
19
54
|
* Fix text areas bugs.
|
data/watir/ie.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bret Pettichord
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-06-
|
12
|
+
date: 2008-06-10 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -17,16 +17,16 @@ dependencies:
|
|
17
17
|
version_requirement:
|
18
18
|
version_requirements: !ruby/object:Gem::Requirement
|
19
19
|
requirements:
|
20
|
-
- - "
|
20
|
+
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.5.
|
22
|
+
version: 0.5.5
|
23
23
|
version:
|
24
24
|
- !ruby/object:Gem::Dependency
|
25
25
|
name: windows-pr
|
26
26
|
version_requirement:
|
27
27
|
version_requirements: !ruby/object:Gem::Requirement
|
28
28
|
requirements:
|
29
|
-
- - "
|
29
|
+
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
31
|
version: 0.6.6
|
32
32
|
version:
|