修复back()后退不准确的情况

This commit is contained in:
g1879 2023-07-27 15:03:20 +08:00
parent cbc9367127
commit 08831e7ce8

View File

@ -624,14 +624,14 @@ class ChromiumBase(BasePage):
index = history['currentIndex'] index = history['currentIndex']
history = history['entries'] history = history['entries']
direction = 1 if steps > 0 else -1 direction = 1 if steps > 0 else -1
curr_url = history[index]['userTypedURL'] curr_url = history[index]['url']
nid = None nid = None
for num in range(abs(steps)): for num in range(abs(steps)):
for i in history[index::direction]: for i in history[index::direction]:
index += direction index += direction
if i['userTypedURL'] != curr_url: if i['url'] != curr_url:
nid = i['id'] nid = i['id']
curr_url = i['userTypedURL'] curr_url = i['url']
break break
if nid: if nid: