posting to a form with no form name
Ryan Ginstrom
software at ginstrom.com
Fri Nov 2 03:04:50 EDT 2007
More information about the Python-list mailing list
Fri Nov 2 03:04:50 EDT 2007
- Previous message (by thread): python at command prompt
- Next message (by thread): posting to a form with no form name
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> On Behalf Of scripteaze at gmail.com > posting to a form with no form name or it's just that i cant > find the form name. > can anyone explain how to either post to a form with no name > or, find the name of the form..here my current output, but i > dont see a form name, also, there is only 1 form on the page I believe you want Browser.select_form(nr=0) # Using mechanize # http://wwwsearch.sourceforge.net/mechanize/ from mechanize import Browser browser = Browser() browser.open("http://example.com") browser.select_form(nr=0) browser['username'] = "me" browser['password'] = "secret" browser.submit() Regards, Ryan Ginstrom
- Previous message (by thread): python at command prompt
- Next message (by thread): posting to a form with no form name
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list