changes.rb in watir-1.5.4 vs changes.rb in watir-1.5.5
- old
+ new
@@ -1,6 +1,20 @@
=begin rdoc
+== Version 1.5.4
+New Features
+* 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.
+ http://svn.openqa.org/fisheye/changelog/watir/?cs=1295
+* Add support for Chinese input as supplied by Vincent Xu.
+ http://jira.openqa.org/browse/WTR-71.
+
+Bug Fixes
+* Add dependency on windows-pr 0.6.6, which seems to be necessary on Vista.
+* Fix for bug in IE.close_others provided by Paul Taylor.
+ http://jira.openqa.org/browse/WTR-194
+* Fix for error when using verify_equal with ci_reporter, provided by Marcog.
+ http://svn.openqa.org/fisheye/changelog/watir/?cs=1301
+
== Version 1.5.3
Bug fixes and minor cleanup.
* Fix text areas bugs.
* Fix warning messages caused by redefined constants.
@@ -8,20 +22,20 @@
* Fix [WTR-90] error when running tests when installing gem.
http://jira.openqa.org/browse/WTR-90
* Fix tests.
* Update documentation.
-Major Changes in 1.5.1
+Major Changes in 1.5.2
Support for IE's Modal Dialogs.
showModalDialog()
Any method can be used to specify an element (:text, :class, etc.).
ie.button(:class,'Button Menu').click
ie.div(:text, 'Type').text_field(:class, 'TextInput-input').set('my value')
ie.button(:text, 'Save').click
One can now use multiple attributes to specify an element.
ie.span(:class =>'Label', :text => 'Add new').click
-Other Changes in 1.5.1
+Other Changes in 1.5.2
* Migrated IE.new_process from watir/contrib and improved its reliability. We now recommend IE.new_process over IE.new as a way to avoid numerous errors detailed in http://jira.openqa.org/browse/WTR-150.
* Added IE.start_process. This works like IE.start, but uses the new_process mechanism to start IE.
* Added IE.new_window and IE.start_window. This are synonyms for IE.new and IE.start.
* Added dependency on the win32-process gem.
* Added IE.each, which iterates through the various IE windows currently open.