On 2012-04-14 17:46, Karim Gorjux wrote:
But I can't get any of these forms! I need the first form so I tried

br.select_form(nr=0)

but I get None!

With "br.select_form()" you set the current form which is accessible through the "br.form" attribute. The method itself doesnt't return anything and thus you get "None" if you do "print br.select_form(nr=0)".

For further processing you have to work with "br.form" and its methods. See also help(br.select_form) and help(br.form).

Bye, Andreas
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to