We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab6e1c2 + a662741 commit ce627eeCopy full SHA for ce627ee
pycaching/cache.py
@@ -974,7 +974,7 @@ def _get_log_counts_from_cache_details(soup):
974
:param bs4.BeautifulSoup soup: Parsed html document of the cache details page.
975
"""
976
lbl_find_counts = soup.find("span", {"id": "ctl00_ContentBody_lblFindCounts"})
977
- log_totals = lbl_find_counts.find("ul", "LogTotals")
+ log_totals = lbl_find_counts.find("ul", {"aria-labelledby": "LoggedVisits"})
978
979
# Text gives numbers separated by a lot of spaces, splitting retrieves the numbers.
980
# The values might contain thousand separators, which we have to remove before converting
0 commit comments