fixing statefull website with account's link changing
This commit is contained in:
parent
70cf9426ba
commit
226c4853a1
1 changed files with 16 additions and 13 deletions
|
|
@ -57,23 +57,26 @@ class GanAssurances(LoginBrowser):
|
||||||
return self.page.get_list()
|
return self.page.get_list()
|
||||||
|
|
||||||
def get_history(self, account):
|
def get_history(self, account):
|
||||||
if account._link is None:
|
accounts = self.get_accounts_list()
|
||||||
return iter([])
|
for a in accounts:
|
||||||
|
if a.id == account.id:
|
||||||
|
self.location(a._link)
|
||||||
|
assert self.transactions.is_here()
|
||||||
|
return self.page.get_history()
|
||||||
|
|
||||||
self.location(account._link)
|
return iter([])
|
||||||
|
|
||||||
assert self.transactions.is_here()
|
|
||||||
|
|
||||||
return self.page.get_history()
|
|
||||||
|
|
||||||
def get_coming(self, account):
|
def get_coming(self, account):
|
||||||
if account._link is None:
|
accounts = self.get_accounts_list()
|
||||||
return iter([])
|
for a in accounts:
|
||||||
|
if a.id == account.id:
|
||||||
|
self.location(a._link)
|
||||||
|
assert self.transactions.is_here()
|
||||||
|
|
||||||
self.location(account._link)
|
self.location(self.page.get_coming_link())
|
||||||
assert self.transactions.is_here()
|
assert self.transactions.is_here()
|
||||||
|
|
||||||
self.location(self.page.get_coming_link())
|
return self.page.get_history()
|
||||||
assert self.transactions.is_here()
|
|
||||||
|
|
||||||
return self.page.get_history()
|
return iter([])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue