微调注释

This commit is contained in:
g1879 2022-12-06 17:40:47 +08:00
parent 9810f0f280
commit 21d5878e90
4 changed files with 5 additions and 5 deletions

View File

@ -116,16 +116,14 @@ class ChromiumBase(BasePage):
return False
def _onFrameStartedLoading(self, **kwargs):
"""页面跳转时触发"""
# print('FrameStartedLoading')
"""页面开始加载时触发"""
if kwargs['frameId'] == self.tab_id:
self._is_loading = True
if self._debug:
print('FrameStartedLoading')
def _onFrameStoppedLoading(self, **kwargs):
"""页面跳转时触发"""
# print('FrameStoppedLoading')
"""页面加载完成后触发"""
if kwargs['frameId'] == self.tab_id and self._first_run is False and self._is_loading:
if self._debug:
print('FrameStoppedLoading')

View File

@ -32,7 +32,7 @@ class ChromiumElement(DrissionElement):
self._scroll = None
self._tag = None
if not node_id and not obj_id:
raise TypeError('node_id或obj_id必须传入一个')
raise RuntimeError('元素可能已失效')
if node_id:
self._node_id = node_id

View File

@ -194,6 +194,7 @@ class SessionPage(BasePage):
@property
def download(self) -> DownloadKit:
"""返回下载器对象"""
if not hasattr(self, '_download_kit'):
self._download_kit = DownloadKit(session=self)

View File

@ -383,6 +383,7 @@ class WebPage(SessionPage, ChromiumPage, BasePage):
@property
def download(self) -> DownloadKit:
"""返回下载器对象"""
if self.mode == 'd':
self.cookies_to_session()
return super().download