mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-16 20:12:44 +00:00
Move debug print to be more accurate
This commit is contained in:
parent
019b777228
commit
d03be03aeb
|
@ -159,7 +159,6 @@ def main():
|
||||||
|
|
||||||
if state["inst_pg"] != 1:
|
if state["inst_pg"] != 1:
|
||||||
while curr_page != state["inst_pg"]:
|
while curr_page != state["inst_pg"]:
|
||||||
print(f"Jumping to institution page {curr_page}", file=sys.stderr)
|
|
||||||
jumpable_pages = {
|
jumpable_pages = {
|
||||||
int(x.get_attribute("href").split("'")[3][5:]): x
|
int(x.get_attribute("href").split("'")[3][5:]): x
|
||||||
for x in driver.find_elements(
|
for x in driver.find_elements(
|
||||||
|
@ -181,6 +180,7 @@ def main():
|
||||||
else:
|
else:
|
||||||
jumpable_pages[max(jumpable_pages)].click()
|
jumpable_pages[max(jumpable_pages)].click()
|
||||||
curr_page = max(jumpable_pages)
|
curr_page = max(jumpable_pages)
|
||||||
|
print(f"Jumping to institution page {curr_page}", file=sys.stderr)
|
||||||
|
|
||||||
wait(EC.staleness_of(page))
|
wait(EC.staleness_of(page))
|
||||||
sleep(random.uniform(3, 6))
|
sleep(random.uniform(3, 6))
|
||||||
|
|
Loading…
Reference in a new issue