Quote:
Originally Posted by luiscc
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.