on page to update user information, raise BrowserIncorrectPassword

This commit is contained in:
Romain Bignon 2013-02-10 17:17:06 +01:00
commit cc31e73f23
3 changed files with 9 additions and 3 deletions

View file

@ -20,7 +20,7 @@
from weboob.tools.browser import BaseBrowser, BrowserIncorrectPassword
from .pages import LoginPage, AccountsList, AccountHistory
from .pages import LoginPage, AccountsList, AccountHistory, UpdateInfoPage
from datetime import date
from dateutil.relativedelta import relativedelta
@ -38,6 +38,7 @@ class Boursorama(BaseBrowser):
'.*connexion.phtml.*': LoginPage,
'.*/comptes/synthese.phtml': AccountsList,
'.*/mouvements.phtml.*': AccountHistory,
'.*/date_anniversaire.phtml.*': UpdateInfoPage,
}
def __init__(self, *args, **kwargs):