mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
微调注释
This commit is contained in:
parent
9810f0f280
commit
21d5878e90
@ -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')
|
||||
|
@ -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
|
||||
|
@ -194,6 +194,7 @@ class SessionPage(BasePage):
|
||||
|
||||
@property
|
||||
def download(self) -> DownloadKit:
|
||||
"""返回下载器对象"""
|
||||
if not hasattr(self, '_download_kit'):
|
||||
self._download_kit = DownloadKit(session=self)
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user