Quote:
Originally Posted by poluk
As you said I changed the way of looking for the form and now I get a new error (so we progress thanks to you !!!)
Code:
ClientForm.ControlNotFoundError: no control matching name 'username'
|
Your username control is not named 'username'. Find the form and determine the name of the control that is submitted as the username.
IOW, this is wrong:
Code:
br['username'] = self.username
it should be:
Code:
br['something_else_not_username'] = self.username
You probably have the name of the password control wrong, too.