I want to fill the form on this page using python mechanize and then record the response. How should I do it? When I search for forms on this page using the following code, it shows the form only for the search. How should I locate the form name of the other form with fields such as name, gender etc? http://aapmaharashtra.org/join-us Code: import mechanize br=mechanize.Browser() br.open("http://aa
