fix parsing of transactions
This commit is contained in:
parent
b7795f7e61
commit
8c831859b6
1 changed files with 3 additions and 2 deletions
|
|
@ -219,9 +219,10 @@ class AccountHistoryPage(BasePage):
|
|||
for table in tables:
|
||||
# Look for the relevant table in the Pro version
|
||||
header=table.getprevious()
|
||||
while str(header.tag)=="<built-in function Comment>":
|
||||
while header is not None and str(header.tag) != 'div':
|
||||
header=header.getprevious()
|
||||
header=header.find("div")
|
||||
if header is not None:
|
||||
header=header.find("div")
|
||||
if header is not None:
|
||||
header=header.find("span")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue