go on the savings page to get more accounts (patch from Xavier Guerrin)
This commit is contained in:
parent
c6816e7444
commit
5c718184c6
2 changed files with 19 additions and 2 deletions
|
|
@ -77,6 +77,8 @@ class AccountsPage(BasePage):
|
|||
continue
|
||||
|
||||
cols = tr.findall('td')
|
||||
if not cols:
|
||||
continue
|
||||
|
||||
account = Account()
|
||||
account.id = self.parser.tocleanstring(cols[self.COL_ID])
|
||||
|
|
@ -91,6 +93,8 @@ class AccountsPage(BasePage):
|
|||
|
||||
yield account
|
||||
|
||||
class SavingsPage(AccountsPage):
|
||||
COL_ID = 1
|
||||
|
||||
class TransactionsPage(BasePage):
|
||||
def get_next_url(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue