Bump to version 0.9.0

This commit is contained in:
Matthew Mongeau 2012-02-03 16:53:24 -05:00
parent 18607d0966
commit a6fde0e6f7
3 changed files with 26 additions and 1 deletions

18
ChangeLog Normal file
View File

@ -0,0 +1,18 @@
2012-02-01 Joe Ferris <jferris@thoughtbot.com>
* driver_spec.rb, Connection.cpp, Connection.h:
Try to detect when a command starts a page load and wait for it to finish
2012-01-27 Matthew Mongeau <halogenandtoast@gmail.com>
* driver_spec.rb, capybara.js: Trigger mousedown and mouseup events
* driver_spec.rb, capybara.js: Simulate browser events more closely
2012-01-19 Marco Antonio <marcofognog@gmail.com>
* node.rb, driver_spec.rb:
Raise ElementNotDisplayedError also for #drag_to and #select_option when they are invisible.
2012-01-18 Marco Antonio <marcofognog@gmail.com>
* node.rb, driver_spec.rb:
Raise error when an invisible element receives #click so it resembles a browser more closely.
2012-01-15 Marc Schwieterman
* CONTRIBUTING.md: add imagemagick dependency to contributing guide

7
NEWS.md Normal file
View File

@ -0,0 +1,7 @@
New for 0.9.0:
* Raise an error when an invisible element receives #click.
* Raise ElementNotDisplayedError for #drag_to and #select_option when element is invisible.
* Trigger mousedown and mouseup events.
* Model mouse events more closely to the browser.
* Try to detech when a command starts a page load and wait for it to finish

View File

@ -1,7 +1,7 @@
module Capybara
module Driver
class Webkit
VERSION = '0.8.0'.freeze
VERSION = '0.9.0'.freeze
end
end
end