View Single Post
Old 03-08-2011, 04:15 PM   #3
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by luiscc View Post
Can anyone help, please?
You have told your recipe to find a form named "login" with this line:
Code:
br.select_form(name='login')
Your error is simple:
Code:
no form matching name 'login'
Try something like this:
Code:
br.select_form(nr=0)
Increment nr until you hit your form. That assumes that you are on the right login page, that it uses a login form, that you have the right control names USERID and PASSWORD, etc.
Starson17 is offline   Reply With Quote