mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
Update the NEWS file
This commit is contained in:
parent
e67a30fb16
commit
cceb5e6192
3 changed files with 19 additions and 70 deletions
70
ChangeLog
70
ChangeLog
|
@ -1,70 +0,0 @@
|
|||
2012-03-09 Joe Ferris <jferris@thoughtbot.com>
|
||||
* node.rb, driver_spec.rb: Allow interaction with invisible elements
|
||||
|
||||
2012-03-02 Joe Ferris <jferris@thoughtbot.com>
|
||||
* browser.rb: Use Timeout from stdlib since Capybara.timeout is being removed
|
||||
|
||||
2012-03-02 Matthew Mongeau <halogenandtoast@gmail.com>
|
||||
* capybara_webkit_builder.rb:
|
||||
set LANG to en_US.UTF-8 to prevent string encoding issues during install
|
||||
|
||||
2012-03-02 Marc Schwieterman
|
||||
* Rakefile: pro, find_command, and CommandFactory are more structured
|
||||
|
||||
2012-02-27 Joe Ferris <jferris@thoughtbot.com>
|
||||
* README.md: Fixed broken wiki link
|
||||
|
||||
2012-02-24 Joe Ferris <jferris@thoughtbot.com>
|
||||
* README.md: Update instructions for platform specific installation issues
|
||||
|
||||
2012-02-17 Matthew Mongeau <halogenandtoast@gmail.com>
|
||||
* driver_spec.rb, capybara.js: Send proper keycode during keypress event
|
||||
|
||||
2012-02-17 Matthew Mongeau <halogenandtoast@gmail.com>
|
||||
* ChangeLog, version.rb:
|
||||
Bump to 0.10.0
|
||||
|
||||
2012-02-17 Marc Schwieterman
|
||||
* driver_spec.rb, Reset.cpp, Reset.h: Reset history when resetting session.
|
||||
* driver_spec.rb, webkit.rb, browser.rb, CommandFactory.cpp, CurrentUrl.cpp,
|
||||
CurrentUrl.h, find_command.h, webkit_server.pro:
|
||||
current_url now conforms more closely to the behavior of Selenium.
|
||||
|
||||
2012-02-17 Igor Zubkov <igor.zubkov@gmail.com>
|
||||
* spec_helper.rb: Fix typo.
|
||||
|
||||
2012-02-17 Matthew Mongeau <halogenandtoast@gmail.com>
|
||||
* capybara_webkit_builder.rb, capybara_webkit_builder_spec.rb,
|
||||
spec_helper.rb:
|
||||
Allow for overriding MAKE, QMAKE, and SPEC options via the environment.
|
||||
|
||||
2012-02-12 Jason Petersen <jasonmp85@gmail.com>
|
||||
* driver_spec.rb, node.rb, capybara.js:
|
||||
Selected attribute is no longer removed when selecting/deselecting. Only the
|
||||
property is changed.
|
||||
|
||||
2012-02-09 Gabe Berke-Williams <gabe@thoughtbot.com>
|
||||
* capybara-webkit.gemspec: Note capybara-webkit's usage of Sinatra.
|
||||
|
||||
2012-02-03 Matthew Mongeau <halogenandtoast@gmail.com>
|
||||
* version.rb:
|
||||
Bump to 0.9.0
|
||||
|
||||
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.
|
|
@ -28,6 +28,7 @@ GEM
|
|||
subexec (~> 0.0.4)
|
||||
multi_json (1.0.4)
|
||||
nokogiri (1.5.0)
|
||||
nokogiri (1.5.0-x86-mingw32)
|
||||
rack (1.3.2)
|
||||
rack-test (0.6.1)
|
||||
rack (>= 1.0)
|
||||
|
|
18
NEWS.md
18
NEWS.md
|
@ -1,3 +1,21 @@
|
|||
New for HEAD:
|
||||
|
||||
* Better detect page load success, and better handle load failures.
|
||||
* HTTP Basic Auth support.
|
||||
* Share the cookie jar across windows.
|
||||
* More useful and detailed debugging output.
|
||||
* Catch up with recent capybara releases.
|
||||
* Ignore errors from canceled requests.
|
||||
* Follow how Selenium treats focus and blur form events.
|
||||
* Control JavaScript prompts from Ruby.
|
||||
* Each command has a configurable timeout.
|
||||
* Performance improvements on Linux.
|
||||
* Support empty `multiple` attributes.
|
||||
|
||||
New for 0.12.1:
|
||||
|
||||
* Fix integration with newer capybara for the debugging driver.
|
||||
|
||||
New for 0.12.0:
|
||||
* Better windows support
|
||||
* Support for localStorage
|
||||
|
|
Loading…
Reference in a new issue