pass page which asks to update personnal information
This commit is contained in:
parent
9142f6cea2
commit
9e2d318c38
2 changed files with 20 additions and 12 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue