Hello everyone!
I’m happy to announce that Watir-Classic 3.4.0 has been released!
Put it into your Gemfile:
gem "watir-classic", "~> 3.4.0"
Or install it manually with:
gem install watir-classic
Biggest change is a complete documentation overhaul. Check it out at rubydoc.info/github/watir/watir-classic/frames
Other changes:
- All deprecated methods will print out warnings.
Element#flash
returnsself
instead ofnil
.- Fix frame locator in
Frame#attach_command
(issue #45). - Remove
:zero_based_indexing
option - from now on all index options are starting from zero. - Remove global variable
$HIDE_IE
- useIE.visible=
method instead. Support for command line switch-b
is also removed. - Remove global varialbe
$FAST_SPEED
- useIE.speed=
method instead. Support for command line switch-f
is also removed. - Remove
IE#close_all
- usebrowser.windows.each(&:close)
instead. - Remove
IE#close_modal
- usebrowser.modal_dialog.close
instead. - Remove
IE#close_others
- usebrowser.windows.reject(&:current?).each(&:close)
instead. - Remove unused
ie-new-process.rb
. - Remove unused
PageContainer
module. - Remove unused
PageContainer#check_for_http_error
. - Remove unused
PageContainer#enabled_popup
- usebrowser.modal_dialog
instead.