pass page which asks to update personnal information

This commit is contained in:
Romain Bignon 2013-03-02 11:42:07 +01:00
commit 9e2d318c38
2 changed files with 20 additions and 12 deletions

View file

@ -27,7 +27,7 @@ from weboob.capabilities import NotAvailable
from weboob.tools.capabilities.bank.transactions import FrenchTransaction
__all__ = ['AccountsList', 'AccountHistoryPage']
__all__ = ['GlobalAccountsList', 'AccountsList', 'AccountHistoryPage']
class Transaction(FrenchTransaction):
@ -90,6 +90,10 @@ class AccountsList(BasePage):
if len(warn) > 0:
raise BrowserIncorrectPassword(warn[0].text)
def need_reload(self):
form = self.document.xpath('//form[@name="InformationsPersonnellesForm"]')
return len(form) > 0
def get_list(self):
l = []
@ -131,4 +135,7 @@ class AccountsList(BasePage):
return l
class GlobalAccountsList(BasePage):
pass
# vim:ts=4:sw=4