From f0ffd19be16b04110f3937ec712c23e6e88c2ab0 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sun, 10 Aug 2008 16:15:05 -0400 Subject: [PATCH] Update History --- History.txt | 23 ++++++++++++++++++++--- TODO.txt | 1 + 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index e308a913..85128125 100644 --- a/History.txt +++ b/History.txt @@ -1,16 +1,33 @@ == Trunk -* Enhancements +* Major enhancements - * Support file fields using attaches_file (Patch from Kyle Hargraves) + * Added #within for manipulating the current page within a selector scope + * Add support for file fields via #attaches_file method (Patch from Kyle Hargraves) + * Support relative links, including href="?foo=bar" (Patch from Kyle Hargraves) + * Separated Rails-specific code from the Webrat core to make it easier to use Webrat with other environments + * Alias visits as visit, clicks_link as click_link, etc. for better readability + +* Minor enhancements + + * Add support for disabling JavaScript when clicking a link to enable testing of both JS + and non-JS implementations (Luke Melia and Bryan Helmkamp) + * Support  's as spaces in matching link text (Patch from Luke Melia) * Support button elements (Patch from Nick Sieger) * Support matching select options by regexp (Patch from Kyle Hargraves) - * Support relative links, including href="?foo=bar" (Patch from Kyle Hargraves) * Support links to fully qualified URLs starting with http:// or https:// (Luke Melia) * save_and_open_page rewrites css and image references to provide a friendlier debugging experience (Luke Melia) + * Added support for matching alt attributes in fields (primarly for clicks_button) (Patch from Aaron Quint) + * Support '&' in submitted values (Patch from Kyle Hargraves) + * Support clicking links by title (Patch from Dan Barry) + * Added missing spec for clicking image buttons (Patch from Tim Harper) + * Switched tests to specs, and from Mocha to RSpec's mocking library * Bug fixes + * Don't open blank pages in the browser (Patch from Kyle Hargraves) + * Support radio buttons with multiple labels (Patch from Dan Barry) + * Fix load order bug on some platforms (Patch from Ismael Celis) * Fix bug with empty select list option (Patch from Kyle Hargraves) * Fix regression of not sending default values in password fields * Don't explode if encountering inputs with no type attribute (assume text) diff --git a/TODO.txt b/TODO.txt index c3a18135..10aa293f 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,3 +1,4 @@ +Restore SSL support for Rails (See 73d3b72108254c0f1ad00e63f8e712115cc8ca7c) Full support for multiple forms on a page Track the current form based on the location of the last manipulated input, use this as a default for clicks_button Make current_url work with redirections