From bdb8ab4d0a543687cafb5b64294f0a3d0117d144 Mon Sep 17 00:00:00 2001 From: g1879 Date: Thu, 8 Dec 2022 17:53:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83=EF=BC=8C=E5=BE=85=E6=B5=8B?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/chromium_base.py | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/DrissionPage/chromium_base.py b/DrissionPage/chromium_base.py index df2b72d..874192f 100644 --- a/DrissionPage/chromium_base.py +++ b/DrissionPage/chromium_base.py @@ -83,7 +83,7 @@ class ChromiumBase(BasePage): if not self._is_reading: self._is_reading = True if self._debug: - print('getDoc') + print('获取document') self._wait_loading() root_id = self._tab_obj.DOM.getDocument()['root']['nodeId'] self._root_id = self._tab_obj.DOM.resolveNode(nodeId=root_id)['object']['objectId'] @@ -100,8 +100,8 @@ class ChromiumBase(BasePage): end_time = perf_counter() + timeout while perf_counter() < end_time: state = self.ready_state - if self._debug: - print(f'{state=}') + # if self._debug: + # print(f'{state=}') if state == 'complete': return True elif self.page_load_strategy == 'eager' and state in ('interactive', 'complete'): @@ -120,13 +120,13 @@ class ChromiumBase(BasePage): if kwargs['frameId'] == self.tab_id: self._is_loading = True if self._debug: - print('FrameStartedLoading') + print('页面开始加载 FrameStartedLoading') def _onFrameStoppedLoading(self, **kwargs): """页面加载完成后触发""" if kwargs['frameId'] == self.tab_id and self._first_run is False and self._is_loading: if self._debug: - print('FrameStoppedLoading') + print('页面停止加载 FrameStoppedLoading') self._get_document() def _onLoadEventFired(self, **kwargs): @@ -141,19 +141,12 @@ class ChromiumBase(BasePage): def _onDocumentUpdated(self, **kwargs): """页面跳转时触发""" if self._debug: - print('docUpdated') - # self._is_loading = True - # if self._debug: - # print('docUpdated') + print('documentUpdated') def _onFrameNavigated(self, **kwargs): """页面跳转时触发""" - if self._debug: - print('nav') - # if not kwargs['frame'].get('parentId', None): - # self._is_loading = True - # if self._debug: - # print('nav') + if self._debug and not kwargs['frame'].get('parentId', None): + print('navigated') def _set_options(self) -> None: pass @@ -514,9 +507,11 @@ class ChromiumBase(BasePage): def stop_loading(self) -> None: """页面停止加载""" if self._debug: - print('stopLoading') + print('阻止页面加载') self._tab_obj.Page.stopLoading() - self._get_document() + while self.ready_state != 'complete': + pass + # self._get_document() def run_cdp(self, cmd: str, **cmd_args) -> dict: """执行Chrome DevTools Protocol语句 \n @@ -617,7 +612,10 @@ class ChromiumBase(BasePage): result = self._driver.Page.navigate(url=to_url, frameId=frame_id) else: result = self._driver.Page.navigate(url=to_url) + is_timeout = not self._wait_loading(timeout) + while self.is_loading: + pass if is_timeout: err = TimeoutError('页面连接超时。') @@ -639,8 +637,9 @@ class ChromiumBase(BasePage): if err: if show_errmsg: raise err if err is not None else ConnectionError('连接异常。') + return False - return False if err else True + return True class ChromiumFrame(ChromiumBase):