Take the 2008 Git User's Survey and help out! [ hide ]

public
Fork of brynary/webrat
Description: Webrat - Ruby Acceptance Testing for Web applications
Homepage: http://www.brynary.com/uploads/webrat/rdoc/index.html
Clone URL: git://github.com/gwynm/webrat.git
Search Repo:
webrat / History.txt
100644 48 lines (35 sloc) 2.2 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
== Trunk
 
* Enhancements
 
  * Support matching select options by regexp (Patch from Kyle Hargraves)
  * Support relative links, including href="?foo=bar" (Patch from Kyle Hargraves)
  
* Bug fixes
 
  * Fix bug with empty select list option (Patch from Kyle Hargraves)
  * Fix regression of not sending default values in password fields
  
== 0.2.0 / 2008-04-04
 
* 4 Major enhancements
 
  * Add save_and_open_page to aid in debugging
  * Add radio button support via #chooses method
  * Add basic support for Rails-generated JavaScript link tags
  * Add support for checkboxes (Patches from Kyle Hargraves and Jarkko Laine)
  * Add support for textarea fields (Patch from Sacha Schlegel)
  
* 8 Minor enhancements
  
  * Added reloads method to reload the page (Patch from Kamal Fariz Mahyuddi)
  * Prevent making a request if clicking on local anchor link (Patch from Kamal Fariz Mahyuddi)
  * Added clicks_link_within(selector, link_text), allowing restricting link search
  to within a given css selector (Path from Luke Melia)
  * Allow specifying the input name/label when doing a select (Patch from David Chelimsky)
  * Raise a specific exception if the developer tries to manipulate form elements before loading a page (Patch from James Deville)
  * Add support for alternate POST, PUT and DELETE link clicking (Patch from Kyle Hargraves)
  * Change clicks_link to find the shortest matching link (Patch from Luke Melia)
  * Improve matching for labels in potentially ambiguous cases
  
* 7 Bug fixes
 
  * Fix incorrect serializing of collection inputs, i.e. name contains [] (Patch from Kamal Fariz Mahyuddi)
  * Serialize empty text field values just like browsers (Patch from Kamal Fariz Mahyuddi)
  * Quick fix to avoid @dom not initialized warnings (Patch from Kamal Fariz Mahyuddi)
  * Docfix: bad reference to #select method in README (Patch from Luke Melia)
  * Ensure Rails-style checkboxes work properly (checkboxes followed by a hidden input with the same name)
  * Fix Edge Rails (a.k.a. 2.0 RC) compatibility (Patch from David Chelimsky)
  * Support param hashes nested more than one level (Patch from David Chelimsky)
 
== 0.1.0 / 2007-11-28
 
* 1 major enhancement
  * Birthday!