I am working on mechanize with python.
The
I found this as a solution for the same problem. br is the mechanize object:
formcount=0
for frm in br.forms():
if str(frm.attrs["id"])=="sblock":
break
formcount=formcount+1
br.select_form(nr=formcount)
I'm sure the loop counter method above could be done more pythonic, but this should select the form with attribute id="sblock".