From: Gregory Brown Date: 2006-08-05T12:38:05+09:00 Subject: Re: Mechanize On 8/4/06, barjunk wrote: > > I'm trying to figure out how to use Mechanize to get the data out of a > select list in a page. The docs aren't too clear on the steps needed > to do that. > > Anyone have a good reference for me to use so that I can do this? Not a reference, but here is some code from my freshmeat automation that deals with select lists in a form field s = form.field("add_release[release_focus_name]") s.value = s.options[5].value t = form.field("add_release[hide_from_frontpage]") t.value = t.options[0].value