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"
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…