rename BasePage.loaded() to on_loaded()
This commit is contained in:
parent
3b312923ea
commit
42de7aa5a3
16 changed files with 18 additions and 18 deletions
|
|
@ -23,7 +23,7 @@ from weboob.capabilities.bank import Operation
|
|||
|
||||
class AccountComing(BasePage):
|
||||
|
||||
def loaded(self):
|
||||
def on_loaded(self):
|
||||
self.operations = []
|
||||
|
||||
for tr in self.document.getiterator('tr'):
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ from weboob.tools.browser import BasePage
|
|||
class AccountsList(BasePage):
|
||||
LINKID_REGEXP = re.compile(".*ch4=(\w+).*")
|
||||
|
||||
def loaded(self):
|
||||
def on_loaded(self):
|
||||
pass
|
||||
|
||||
def get_list(self):
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ from weboob.tools.browser import BasePage
|
|||
from weboob.backends.bnporc.captcha import Captcha, TileError
|
||||
|
||||
class LoginPage(BasePage):
|
||||
def loaded(self):
|
||||
def on_loaded(self):
|
||||
pass
|
||||
|
||||
def login(self, login, password):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue