support wher forced to go on change_password page
This commit is contained in:
parent
1515205a8e
commit
b052e4aa53
4 changed files with 19 additions and 6 deletions
|
|
@ -22,7 +22,7 @@ from urlparse import urlparse, parse_qs
|
|||
from decimal import Decimal
|
||||
import re
|
||||
|
||||
from weboob.tools.browser import BasePage
|
||||
from weboob.tools.browser import BasePage, BrowserIncorrectPassword
|
||||
from weboob.tools.ordereddict import OrderedDict
|
||||
from weboob.capabilities.bank import Account
|
||||
from weboob.tools.capabilities.bank.transactions import FrenchTransaction
|
||||
|
|
@ -37,6 +37,10 @@ class LoginPage(BasePage):
|
|||
class LoginErrorPage(BasePage):
|
||||
pass
|
||||
|
||||
class ChangePasswordPage(BasePage):
|
||||
def on_loaded(self):
|
||||
raise BrowserIncorrectPassword('Please change your password')
|
||||
|
||||
class InfoPage(BasePage):
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue