All Versions
74
Latest Version
Avg Release Cycle
195 days
Latest Release
294 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v0.6.0 Changes
- ๐ Changed main parser to use hpricot
- Made WWW::Mechanize::Page class searchable like hpricot
- โก๏ธ Updated WWW::Mechanize#click to support hpricot links like this: @agent.click (page/"a").first
- Clicking a Frame is now possible: @agent.click (page/"frame").first
- โ Removed deprecated attr_finder
- โ Removed REXML helper methods since the main parser is now hpricot
- ๐ Overhauled cookie parser to use WEBrick::Cookie
-
v0.5.4 Changes
- โ Added WWW::Mechanize#trasact for saving history state between in a transaction. See the EXAMPLES file. Thanks Johan Kiviniemi.
- โ Added support for gzip compressed pages
- Forms can now be accessed like a hash. For example, to set the value of an input field named 'name' to "Aaron", you can do this: form['name'] = "Aaron" Or to get the value of a field named 'name', do this: puts form['name']
- File uploads will now read the file specified in FileUpload#file_name
- FileUpload can use an IO object in FileUpload#file_data
- ๐ Fixed a bug with saving files on windows
- ๐ Fixed a bug with the filename being set in forms
-
v0.5.3 Changes
- Mechanize#click will now act on the first element of an array. So if an array of links is passed to WWW::Mechanize#click, the first link is clicked. That means the syntax for clicking links is shortened and still supports selecting a link. The following are equivalent: agent.click page.links.first agent.click page.links
- ๐ Fixed a bug with spaces in href's and get's
- โ Added a tick, untick, and click method to radio buttons so that radiobuttons can be "clicked"
- โ Added a tick, untick, and click method to check boxes so that checkboxes can be "clicked"
- Options on Select lists can now be "tick"ed, and "untick"ed.
- ๐ Fixed a potential bug conflicting with rails. Thanks Eric Kolve
- โก๏ธ Updated log4r support for a speed increase. Thanks Yinon Bentor
- โ Added inspect methods and pretty printing
-
v0.5.2 Changes
- ๐ Fixed a bug with input names that are nil
- Added a warning when using attr_finder because attr_finder will be deprecated in 0.6.0 in favor of method calls. So this syntax: @agent.links(:text => 'foo') should be changed to this: @agent.links.text('foo')
- โ Added support for selecting multiple options in select tags that support multiple options. See WWW::Mechanize::MultiSelectList.
- New select list methods have been added, select_all, select_none.
- Options for select lists can now be "clicked" which toggles their selection, they can be "selected" and "unselected". See WWW::Mechanize::Option
- โ Added a method to set multiple fields at the same time, WWW::Mechanize::Form#set_fields. Which can be used like so: form.set_fields( :foo => 'bar', :name => 'Aaron' )
-
v0.5.1 Changes
- ๐ Fixed bug with file uploads
- โ Added performance tweaks to the cookie class
-
v0.5.0 Changes
- โ Added pluggable parsers. (Thanks to Eric Kolve for the idea)
- ๐ Changed namespace so all classes are under WWW::Mechanize.
- โก๏ธ Updating Forms so that fields can be used as accessors (Thanks Gregory Brown)
- โ Added WWW::Mechanize::File as default object used for unknown content types.
- โ Added 'save_as' method to Mechanize::File, so any page can be saved.
- โ Adding 'save_as' and 'load' to CookieJar so that cookies can be saved between sessions.
- โ Added WWW::Mechanize::FileSaver pluggable parser to automatically save files.
- โ Added WWW::Mechanize::Page#title for page titles
- โ Added OpenSSL certificate support (Thanks Mike Dalessio)
- โ Removed support for body filters in favor of pluggable parsers.
- ๐ Fixed cookie bug adding a '/' when the url is missing one (Thanks Nick Dainty)
-
v0.4.7 Changes
- ๐ Fixed bug with no action in forms. Thanks to Adam Wiggins
- 0๏ธโฃ Setting a default user-agent string
- โ Added house cleaning to the cookie jar so expired cookies don't stick around.
- โ Added new method WWW::Form#field to find the first field with a given name. (thanks to Gregory Brown)
- โ Added WWW::Mechanize#get_file for fetching non text/html files
-
v0.4.6 Changes
- โ Added support for proxies
- โ Added a uri field to WWW::Link
- โ Added a error class WWW::Mechanize::ContentTypeError
- โ Added image alt text to link text
- โ Added an visited? method to WWW::Mechanize
- โ Added Array#value= which will set the first value to the argument. That allows syntax as such: form.fields.name('q').value = 'xyz' Before it was like this: form.fields.name('q').first.value = 'xyz'
-
v0.4.5 Changes
- โ Added support for multiple values of the same name
- Updated build_query_string to take an array of arrays (Thanks Michal Janeczek)
- โ Added WWW::Mechanize#body_filter= so that response bodies can be preprocessed
- โ Added WWW::Page#body_filter= so that response bodies can be preprocessed
- โ Added support for more date formats in the cookie parser
- ๐ Fixed a bug with empty select lists
- ๐ Fixing a problem with cookies not handling no spaces after semicolons
-
v0.4.4 Changes
- Fixed error in method signature, basic_authetication is now basic_auth
- ๐ Fixed bug with encoding names in file uploads (Big thanks to Alex Young)
- โ Added options to the select list