mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
Bump to version 0.9.0
This commit is contained in:
parent
18607d0966
commit
a6fde0e6f7
3 changed files with 26 additions and 1 deletions
18
ChangeLog
Normal file
18
ChangeLog
Normal 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
7
NEWS.md
Normal 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
|
|
@ -1,7 +1,7 @@
|
|||
module Capybara
|
||||
module Driver
|
||||
class Webkit
|
||||
VERSION = '0.8.0'.freeze
|
||||
VERSION = '0.9.0'.freeze
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue